123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411 |
- <template>
- <div class="all padding-20">
- <el-tabs v-model="tabs">
- <el-tab-pane label="待审批" name="waiting"></el-tab-pane>
- <el-tab-pane label="申请通过" name="complete"></el-tab-pane>
- <el-tab-pane label="被驳回" name="refuse"></el-tab-pane>
- </el-tabs>
- <el-row style="margin-bottom: 15px;">
- <el-col :span="12"><el-button type="primary" @click="dialogVisible = true">申请积分</el-button></el-col>
- <el-col :span="6" :offset="6">
- <el-input v-model="formData.keyword" placeholder="输入申请内容" @keyup.enter.native="searchFun">
- <el-button slot="append" @click="searchFun" size="medium" icon="el-icon-search"></el-button>
- </el-input>
- </el-col>
- </el-row>
- <el-table :data="dataList" stripe fit v-loading="table_loading" v-if="tabs == 'complete'" @row-click="openDetail">
- <el-table-column label="申请内容" prop="remark">
- <template slot-scope="scope">
- <span class="font-flex-word" style="max-width: 200px;">{{ scope.row.remark.customize || scope.row.remark.rule }}</span>
- </template>
- </el-table-column>
- <el-table-column label="积分" prop="review_point" width="120">
- <template slot-scope="scope">
- <span :class="{ green: scope.row.review_point < 0, red: scope.row.review_point > 0 }">
- <span v-show="scope.row.review_point > 0">+</span>
- {{ scope.row.review_point }} {{ scope.row.pt_id == 3 ? 'B分' : scope.row.pt_id == 2 ? 'A分' : scope.row.pt_id == 1 ? '绩效分' : '' }}
- </span>
- </template>
- </el-table-column>
- <el-table-column label="时间" prop="event_time" width="150"></el-table-column>
- <template slot="empty">
- <div class="nopoint_box" v-if="!formData.keyword">
- <div class="noimg"></div>
- <span class="title">
- 你还没有申请积分 现在
- <el-button type="text" @click="dialogVisible = true">申请积分</el-button>
- </span>
- </div>
- <div class="nopoint_box" v-else>
- <div class="noimg"></div>
- <span class="title">暂无数据</span>
- </div>
- </template>
- </el-table>
- <el-table :data="dataList" stripe fit v-loading="table_loading" v-show="tabs == 'waiting'" @row-click="openDetail">
- <el-table-column label="申请内容" prop="remark">
- <template slot-scope="scope">
- {{ scope.row.remark.customize || scope.row.remark.rule }}
- </template>
- </el-table-column>
- <el-table-column label="时间" prop="event_time" width="150"></el-table-column>
- <template slot="empty">
- <div class="nopoint_box" v-if="!formData.keyword">
- <div class="noimg"></div>
- <span class="title">
- 你还没有申请积分 现在
- <el-button type="text" @click="dialogVisible = true">申请积分</el-button>
- </span>
- </div>
- <div class="nopoint_box" v-else>
- <div class="noimg"></div>
- <span class="title">暂无数据</span>
- </div>
- </template>
- </el-table>
- <el-table :data="dataList" stripe fit v-loading="table_loading" v-show="tabs == 'refuse'" @row-click="openDetail">
- <el-table-column label="申请内容" prop="remark">
- <template slot-scope="scope">
- {{ scope.row.remark.customize || scope.row.remark.rule }}
- </template>
- </el-table-column>
- <el-table-column label="时间" prop="event_time" width="150"></el-table-column>
- <template slot="empty">
- <div class="nopoint_box" v-if="!formData.keyword">
- <div class="noimg"></div>
- <span class="title">
- 你还没有申请积分 现在
- <el-button type="text" @click="dialogVisible = true">申请积分</el-button>
- </span>
- </div>
- <div class="nopoint_box" v-else>
- <div class="noimg"></div>
- <span class="title">暂无数据</span>
- </div>
- </template>
- </el-table>
- <center style="margin-top: 15px;">
- <el-pagination
- background
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="formData.page"
- :page-sizes="[10, 20, 50, 100]"
- layout="total, sizes, prev, pager, next"
- :page-size="pageLimit"
- :total="total"
- ></el-pagination>
- </center>
- <el-drawer :visible.sync="detailShow" :with-header="false" :size="'600px'">
- <div class="drawer_title">申请详情</div>
- <div class="detail_popup" v-loading="detail_loading" v-if="detail_info !== null">
- <el-row :gutter="10" style="padding-bottom:10px;border-bottom:1px #f8f8f8 solid;">
- <el-col :span="24" class="flex-box flex-v-ce">
- <userImage
- :user_name="detail_info.employee_name"
- :img_url="detail_info.img_url"
- width="50px"
- height="50px"
- fontSize="1">
- </userImage>
- <div class="user_text">
- <p style="margin-left: 10px;">{{ detail_info.employee_name }}</p>
- <div v-show="detail_info.review_point != 0">
- <p v-if="detail_info.status == 1">
- <span
- v-show="
- (detail_info.review_point >= 0 && detail_info.item_prize_type == 1) ||
- (detail_info.review_point >= 0 && detail_info.item_prize_type == -1) ||
- (detail_info.review_point >= 0 && detail_info.item_prize_type == 0)
- "
- style="color:#f56c6c;padding-left:8px"
- >
- +{{ detail_info.review_point }}
- </span>
- <span
- v-show="
- (detail_info.review_point <= 0 && detail_info.item_prize_type == 2) ||
- (detail_info.review_point <= 0 && detail_info.item_prize_type == -1) ||
- (detail_info.review_point <= 0 && detail_info.item_prize_type == 0)
- "
- style="color:#67C23A;padding-left:8px"
- >
- {{ detail_info.review_point }}
- </span>
- <span>{{ detail_info.pt_id == 1 ? '绩效分' : detail_info.pt_id == 2 ? 'A分' : detail_info.pt_id == 3 ? 'B分' : '' }}</span>
- </p>
- </div>
- </div>
- <p class="user_text text_ccc">{{ detail_info.review_status_mark }}</p>
- </el-col>
- </el-row>
- <el-row :gutter="10" v-for="(item, index) in detail_info.detail" :key="index">
- <el-col :span="4">{{ item.key }}</el-col>
- <el-col :span="20" v-if="item.key == '附件'">
- <el-image
- v-for="(items, indexs) in item.value"
- :key="indexs"
- style="width: 100px; height: 100px;margin:2px;"
- :src="items"
- :preview-src-list="item.value"
- ></el-image>
- </el-col>
- <el-col :span="20" v-else>{{ item.value }}</el-col>
- </el-row>
- <el-row :gutter="10" v-if="detail_info.files != null && detail_info.files > 0">
- <el-col :span="4">图片</el-col>
- <el-col :span="20"><el-image v-for="(item, index) in detail_info.files" :key="index" style="width: 100px; height: 100px" :src="item"></el-image></el-col>
- </el-row>
- <div v-show="detail_info.process">
- <Steps :process="detail_info.process"></Steps>
- </div>
- <div class="btn_danger flex-box flex-center-center" v-if="detail_info.applyor_id == userId && detail_info.can_refuse == '1' && detail_info.source_type == 2">
- <el-button type="danger" class="danger" @click="revocation" :loading="cx_loading">撤销</el-button>
- </div>
- </div>
- </el-drawer>
- <applicationIntegrationPopup title="申请积分" :isBreak="isBreak" :ruleOnoff="ruleOnoff" :visible.sync="dialogVisible" v-if="dialogVisible"></applicationIntegrationPopup>
- </div>
- </template>
- <script>
- import moment from 'moment';
- import EmployeeSelector from '@/components/EmployeeSelector.vue';
- import applicationIntegrationPopup from '@/components/applicationIntegrationPopup';
- import Steps from '@/components/Steps';
- import {getToken } from '@/api/auth';
- export default {
- data() {
- return {
- ruleOnoff: false,
- tabs: 'waiting',
- dataList: [],
- table_loading: false,
- detailShow: false,
- detail_loading: false,
- formData: {
- type: 'waiting',
- pt_id: 0,
- page: 1,
- page_size: 10,
- keyword: ''
- },
- total: 0,
- pageLimit: 10,
- point_types: this.$getTyps(),
- detail_info: {},
- dialogVisible: false,
- itemIndex: 0,
- selectId: '',
- userId: '',
- cx_loading: false,
-
- isBreak:false,//是否打开缓存的未完成奖扣
- };
- },
- components: {
- EmployeeSelector,
- applicationIntegrationPopup,
- Steps
- },
- watch: {
- tabs(val) {
- this.dataList = [];
- this.total = 0;
- this.formData.page = 1;
- this.formData.keyword = '';
- this.formData.type = val;
- this.get_list();
- }
- },
- mounted() {
- this.cheakAx()
- this.userId = this.$getUserData().id;
- this.get_list();
- setTimeout(() => {
- let apply_list=this.$getCache('apply_list')
- if(apply_list&&apply_list.length>0){
- this.isBreak=true;
- this.dialogVisible=true;
- }else{
- this.isBreak=false;
- }
- }, 1000)
- },
- methods: {
- cheakAx() {
- this.$axios('get', '/api/integral/site/config')
- .then(res => {
- let data = res.data.data;
- if(data.specified_rule_item){
- this.ruleOnoff = data.specified_rule_item == 1 ? true : false;
- }else{
- this.ruleOnoff = false
- }
- })
- },
- // 撤销奖扣
- revocation() {
- var that = this;
- this.$confirm('撤销此项数据将不可恢复,是否撤销?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- let data = { review_id: that.selectId };
- that.cx_loading = true;
- that.$axios('post', '/api/integral/review/destroy', data)
- .then(res => {
- if (res.data.code == 1) {
- that.get_list();
- } else {
- that.$message.error(res.data.data.msg);
- }
- })
- .finally(() => {
- that.cx_loading = false;
- that.detailShow = false;
- });
- });
- },
- handleCurrentChange(val) {
- this.formData.page = val;
- this.get_list();
- },
- handleSizeChange(val) {
- this.pageLimit = val;
- this.formData.page_size = this.pageLimit;
- this.get_list();
- },
- searchFun() {
- this.dataList = [];
- this.total = 0;
- this.formData.page = 1;
- this.get_list();
- },
- get_list() {
- this.table_loading = true;
- this.$axios('get', '/api/integral/review/apply/list', this.formData)
- .then(res => {
- if (res.data.code == 1) {
- this.dataList = res.data.data.list;
- this.total = res.data.data.total;
- }
- })
- .finally(() => {
- this.table_loading = false;
- });
- },
- openDetail(item) {
- this.selectId = item.id;
- let data = {
- review_id: item.id
- };
- this.detailShow = true;
- this.detail_loading = true;
- this.$axios('get', '/api/integral/review', data)
- .then(res => {
- if (res.data.code == 1) {
- this.detail_info = res.data.data;
- } else {
- this.$message.error(res.data.data.msg);
- }
- })
- .finally(() => {
- this.detail_loading = false;
- });
- }
- }
- };
- </script>
- <style scoped lang="scss">
- .btn_danger {
- margin-top: 20px;
- }
- .btn_danger .danger {
- width: 120px;
- }
- .box {
- background-color: #ffffff;
- padding: 20px;
- min-height: calc(100vh - 160px);
- }
- .detail_popup {
- padding: 20px;
- height: 90vh;
- overflow-y: auto;
- .row_title {
- position: relative;
- margin: 0 0 20px 0;
- padding-top: 12px;
- font-size: 16px;
- color: #303133;
- line-height: 22px;
- }
- .row_title:before {
- position: absolute;
- top: 0;
- content: ' ';
- width: 100%;
- border-top: 1px #f8f8f8 solid;
- }
- .el-row {
- margin-bottom: 10px;
- font-size: 14px;
- .el-col-4 {
- color: #606266;
- }
- }
- .examine_steps {
- .el-step {
- flex-basis: auto !important;
- }
- }
- }
- // 滚动条样式
- .detail_popup::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.3);
- border-radius: 5px;
- background-color: rgba(216, 216, 216, 0.8);
- }
- .detail_popup::-webkit-scrollbar {
- width: 5px;
- background-color: rgba(201, 201, 201, 0);
- }
- .detail_popup::-webkit-scrollbar-thumb {
- border-radius: 5px;
- -webkit-box-shadow: inset 0 0 5px rgb(153, 145, 145) (160, 154, 154);
- background-color: rgb(168, 167, 167);
- }
- .drawer_title {
- font-size: 18px;
- padding: 20px;
- border-bottom: 1px #efefef solid;
- }
- .user_text {
- margin: 0;
- line-height: 25px;
- display: flex;
- }
- .text_ccc {
- font-size: 16px;
- color: #26a2ff;
- margin-left: 10px;
- }
- ::v-deep .el-table tr:hover {
- cursor: pointer;
- }
- </style>
|