|
@@ -1,19 +1,19 @@
|
|
<template>
|
|
<template>
|
|
<div>
|
|
<div>
|
|
<div class="all padding-20">
|
|
<div class="all padding-20">
|
|
- <el-form ref="form" :inline="true" label-width="80px">
|
|
|
|
|
|
+ <el-form ref="form" :inline="true">
|
|
<el-form-item label="人员">
|
|
<el-form-item label="人员">
|
|
- <el-select size="medium" v-model="select_employee_id" filterable clearable placeholder="请输入或选择人员" style="width: 250px;margin-right: 10px;">
|
|
|
|
|
|
+ <el-select size="medium" multiple v-model="formData.employee_ids" filterable clearable placeholder="请输入或选择人员" style="width: 200px;">
|
|
<el-option v-for="item in employee_map" :key="item.id" :label="item.name" :value="item.id"></el-option>
|
|
<el-option v-for="item in employee_map" :key="item.id" :label="item.name" :value="item.id"></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item label="发放状态">
|
|
<el-form-item label="发放状态">
|
|
- <el-select class="date-picker-width" size="medium" v-model="formData.status" placeholder="请选择复核状态">
|
|
|
|
|
|
+ <el-select class="date-picker-width" size="medium" v-model="formData.has_ticket">
|
|
<el-option v-for="item in dcArr" :key="item.name" :label="item.name" :value="item.id"></el-option>
|
|
<el-option v-for="item in dcArr" :key="item.name" :label="item.name" :value="item.id"></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- <el-form-item label="相关性">
|
|
|
|
- <el-select class="date-picker-width" size="medium" v-model="formData.status" placeholder="请选择复核状态">
|
|
|
|
|
|
+ <el-form-item label="相关性" v-if="employeeOrdept">
|
|
|
|
+ <el-select class="date-picker-width" size="medium" v-model="formData.iSrecorder">
|
|
<el-option v-for="item in source_type" :key="item.name" :label="item.name" :value="item.id"></el-option>
|
|
<el-option v-for="item in source_type" :key="item.name" :label="item.name" :value="item.id"></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -29,10 +29,10 @@
|
|
></el-date-picker>
|
|
></el-date-picker>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-form-item>
|
|
- <el-input size="medium" v-model="formData.keyword" placeholder="输入关键字查找" max="200"></el-input>
|
|
|
|
|
|
+ <el-input size="medium" v-model="formData.keyword" placeholder="输入关键字查找" maxlength="20" clearable></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-form-item>
|
|
- <el-button class="first-element-btn" size="medium" v-if="employeeOrdept" :disabled="deleteDisabled" @click="deleteInBatches" type="danger">批量删除</el-button>
|
|
|
|
|
|
+ <el-button size="medium" :disabled="selectionID.length==0? true:false" @click="deleteInBatches()" type="primary">批量发放奖票</el-button>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
<div class="diy-tip1" style="margin-bottom: 10px;">
|
|
<div class="diy-tip1" style="margin-bottom: 10px;">
|
|
@@ -42,22 +42,19 @@
|
|
|
|
|
|
<!-- 表格 -->
|
|
<!-- 表格 -->
|
|
<div>
|
|
<div>
|
|
- <el-table :data="list" style="width: 100%;cursor: pointer;" v-loading="loading" @row-click="open_detail" @selection-change="deleteEvents">
|
|
|
|
- <el-table-column v-if="employeeOrdept" type="selection" width="55"></el-table-column>
|
|
|
|
- <el-table-column prop="employee_name" label="姓名" align="left" min-width="125px">
|
|
|
|
|
|
+ <el-table :data="list" style="width: 100%;" v-loading="loading" @selection-change="deleteEvents">
|
|
|
|
+ <el-table-column type="selection" width="55" :selectable="selectable"></el-table-column>
|
|
|
|
+ <el-table-column prop="employee_name" label="姓名" align="left" min-width="150px">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<div class="flex-box">
|
|
<div class="flex-box">
|
|
<userImage :user_name="scope.row.employee_name" :img_url="scope.row.employee_img_url" width="50px" height="50px"></userImage>
|
|
<userImage :user_name="scope.row.employee_name" :img_url="scope.row.employee_img_url" width="50px" height="50px"></userImage>
|
|
- <span style="line-height: 50px; padding-left: 10px;">{{ scope.row.employee_name }}</span>
|
|
|
|
|
|
+ <div style="height: 50px;padding-left: 10px;" class="flex-box-v flex-h-zhu">
|
|
|
|
+ <div>{{ scope.row.employee_name }}</div>
|
|
|
|
+ <div v-if="scope.row.dept" style="font-size: 12px;max-width: 150px;" class="fontColorC font-flex-word">{{ scope.row.dept }}</div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="dept" show-overflow-tooltip label="部门" align="left" min-width="120px"></el-table-column>
|
|
|
|
- <el-table-column prop="point" label="积分" align="left" min-width="120px">
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
- <span :class="scope.row.point < 0 ? 'green' : 'red'">{{ scope.row.point }} {{ point_name(scope.row.pt_id) }}</span>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
<el-table-column prop="remark" label="事件内容" align="left" min-width="280px">
|
|
<el-table-column prop="remark" label="事件内容" align="left" min-width="280px">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-tooltip class="item" effect="dark" placement="top">
|
|
<el-tooltip class="item" effect="dark" placement="top">
|
|
@@ -66,7 +63,11 @@
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="rule_name" show-overflow-tooltip label="规则分类" align="left" min-width="140px"></el-table-column>
|
|
|
|
|
|
+ <el-table-column prop="point" label="积分" align="left" min-width="120px">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span :class="scope.row.point < 0 ? 'green' : 'red'">{{ scope.row.point }} {{ point_name(scope.row.pt_id) }}</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column prop="create_time" label="事件发生时间" align="left" min-width="140px">
|
|
<el-table-column prop="create_time" label="事件发生时间" align="left" min-width="140px">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.event_time }}
|
|
{{ scope.row.event_time }}
|
|
@@ -92,13 +93,18 @@
|
|
<span v-show="scope.row.source_type > 10">其他</span>
|
|
<span v-show="scope.row.source_type > 10">其他</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column prop="update_time" label="录入时间" align="left" width="140px">
|
|
|
|
|
|
+ <el-table-column prop="update_time" label="发放状态" align="left" width="140px">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <!-- {{ cuttString(scope.row.create_time) }} -->
|
|
|
|
- {{ scope.row.update_time }}
|
|
|
|
|
|
+ <span class="green" v-if="scope.row.has_ticket">已发放</span>
|
|
|
|
+ <span class="fontColorC" v-else>未发放</span>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ <el-table-column width="150" label="操作">
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
+ <span class="blue" style="cursor: pointer;padding-right: 10px;" @click="open_detail(scope.row)">查看详情</span>
|
|
|
|
+ <span class="blue" style="cursor: pointer;" v-if="!scope.row.has_ticket" @click="deleteInBatches(scope.row)">发放奖票</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
-
|
|
|
|
<template slot="empty">
|
|
<template slot="empty">
|
|
<noData></noData>
|
|
<noData></noData>
|
|
</template>
|
|
</template>
|
|
@@ -111,21 +117,25 @@
|
|
:current-page="formData.page"
|
|
:current-page="formData.page"
|
|
:page-sizes="[10, 20, 50, 100]"
|
|
:page-sizes="[10, 20, 50, 100]"
|
|
layout="total, sizes, prev, pager, next"
|
|
layout="total, sizes, prev, pager, next"
|
|
- :page-size="pageLimit"
|
|
|
|
|
|
+ :page-size="formData.page_size"
|
|
:total="total"
|
|
:total="total"
|
|
></el-pagination>
|
|
></el-pagination>
|
|
</center>
|
|
</center>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <el-drawer title="事件详情" :visible.sync="detail_popup" ref="drawer" :with-header="false" :width="'500px'" direction="rtl">
|
|
|
|
- <div class="drawer_title">事件详情</div>
|
|
|
|
|
|
+
|
|
|
|
+ <el-drawer title="事件详情" :visible.sync="detail_popup" ref="drawer" show-close :with-header="false" :width="'500px'">
|
|
|
|
+ <div class="drawer_title flex-box-ce">
|
|
|
|
+ <span class="flex-1">事件详情</span>
|
|
|
|
+ <i @click="detail_popup=false" style="cursor: pointer;" class="el-icon-close"></i>
|
|
|
|
+ </div>
|
|
<div class="detail_popup" v-loading="detail_loading" v-if="detail_info !== null">
|
|
<div class="detail_popup" v-loading="detail_loading" v-if="detail_info !== null">
|
|
<el-row style="padding-bottom:10px;border-bottom:1px #f8f8f8 solid;">
|
|
<el-row style="padding-bottom:10px;border-bottom:1px #f8f8f8 solid;">
|
|
<div class="flex-box flex-v-ce">
|
|
<div 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>
|
|
<userImage :user_name="detail_info.employee_name" :img_url="detail_info.img_url" width="50px" height="50px" fontSize="1"></userImage>
|
|
<span style="font-size: 18px;line-height:50px; margin-left:10px;margin-right:4px;">{{ detail_info.employee_name }}</span>
|
|
<span style="font-size: 18px;line-height:50px; margin-left:10px;margin-right:4px;">{{ detail_info.employee_name }}</span>
|
|
- <span class="red point" v-show="detail_info.point >= 0">+{{ detail_info.point }} {{ point_name(detail_info.pt_id) }}</span>
|
|
|
|
- <span class="green point" v-show="detail_info.point < 0">{{ detail_info.point }} {{ point_name(detail_info.pt_id) }}</span>
|
|
|
|
|
|
+ <span class="red point" v-if="detail_info.point >= 0">+{{ detail_info.point }} {{ point_name(detail_info.pt_id) }}</span>
|
|
|
|
+ <span class="green point" v-if="detail_info.point < 0">{{ detail_info.point }} {{ point_name(detail_info.pt_id) }}</span>
|
|
</div>
|
|
</div>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
|
|
@@ -160,7 +170,6 @@
|
|
<el-col :span="6">记录人</el-col>
|
|
<el-col :span="6">记录人</el-col>
|
|
<el-col :span="18">{{ detail_info.recorder_name }}</el-col>
|
|
<el-col :span="18">{{ detail_info.recorder_name }}</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
-
|
|
|
|
<el-row v-show="detail_info.date">
|
|
<el-row v-show="detail_info.date">
|
|
<el-col :span="6">事件时间</el-col>
|
|
<el-col :span="6">事件时间</el-col>
|
|
<el-col :span="18">{{ detail_info.date }}</el-col>
|
|
<el-col :span="18">{{ detail_info.date }}</el-col>
|
|
@@ -200,51 +209,68 @@
|
|
</el-row>
|
|
</el-row>
|
|
<el-row>
|
|
<el-row>
|
|
<el-col :span="6">积分</el-col>
|
|
<el-col :span="6">积分</el-col>
|
|
- <el-col :span="18" v-show="detail_info.rule_item.min_point == detail_info.rule_item.max_point">{{ detail_info.rule_item.min_point }}</el-col>
|
|
|
|
|
|
+ <el-col :span="18" v-show="detail_info.rule_item.min_point == detail_info.rule_item.max_point">{{ detail_info.rule_item.min_point }} {{ point_name(detail_info.pt_id) }}</el-col>
|
|
<el-col :span="18" v-show="detail_info.rule_item.min_point != detail_info.rule_item.max_point">
|
|
<el-col :span="18" v-show="detail_info.rule_item.min_point != detail_info.rule_item.max_point">
|
|
- {{ detail_info.rule_item.min_point }} ~ {{ detail_info.rule_item.max_point }}
|
|
|
|
|
|
+ {{ detail_info.rule_item.min_point }} ~ {{ detail_info.rule_item.max_point }} {{ point_name(detail_info.pt_id) }}
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
</div>
|
|
</div>
|
|
|
|
+
|
|
<div v-show="detail_info.process"><Steps :process="detail_info.process"></Steps></div>
|
|
<div v-show="detail_info.process"><Steps :process="detail_info.process"></Steps></div>
|
|
|
|
+
|
|
<div v-show="detail_info.dc_remark.flow"><Review :process="detail_info.dc_remark.flow" :status="detail_info.dc_status"></Review></div>
|
|
<div v-show="detail_info.dc_remark.flow"><Review :process="detail_info.dc_remark.flow" :status="detail_info.dc_status"></Review></div>
|
|
- <div style="text-align: center;margin-top: 30px;" v-if="detail_info.source_type == 10 && see_log">
|
|
|
|
- <el-button type="primary" size="medium" @click="showLog = true">
|
|
|
|
- 查看日志详情内容
|
|
|
|
- <span style=";padding-left:5px;">»</span>
|
|
|
|
- </el-button>
|
|
|
|
- </div>
|
|
|
|
</div>
|
|
</div>
|
|
- <div v-if="!this.$authoritys('employee') && !this.$authoritys('dept_manager')" style="position: absolute; bottom: 20px; display: block; right: 20px;">
|
|
|
|
- <el-button @click="close_integral_event">取消</el-button>
|
|
|
|
- <el-button type="danger" @click="del_integral_event(detail_info)">删除</el-button>
|
|
|
|
|
|
+ <div style="position: absolute; bottom: 20px;right: 20px;left: 20px;" class="flex-box-ce">
|
|
|
|
+ <el-button type="primary" v-if="!detail_info.has_ticket" @click="deleteInBatches({id:detail_info.event_id},true)">发放奖票</el-button>
|
|
|
|
+ <el-button type="primary" v-else @click="openDetail({id:detail_info.event_id})">查看奖票</el-button>
|
|
|
|
+ <div class="flex-1"></div>
|
|
|
|
+ <el-button @click="detail_popup=false">取消</el-button>
|
|
</div>
|
|
</div>
|
|
</el-drawer>
|
|
</el-drawer>
|
|
-
|
|
|
|
- <el-dialog title="查看日志详情" width="600px" :visible.sync="showLog">
|
|
|
|
- <div class="title">{{ ding_report.creator_name }}的{{ ding_report.template_name }}</div>
|
|
|
|
- <div v-if="ding_report.contents.length > 0">
|
|
|
|
- <div class="contents" v-for="(item, index) in ding_report.contents" :key="index">
|
|
|
|
- <div class="key">{{ item.key }}</div>
|
|
|
|
- <div class="value fontColorC">
|
|
|
|
- <span v-if="item.value">{{ item.value }}</span>
|
|
|
|
- <span v-else>未填写</span>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- </div>
|
|
|
|
- <div v-if="ding_report.images.length > 0">
|
|
|
|
- <div class="key" style="margin-bottom: 20px;">图片</div>
|
|
|
|
- <div class="flex-box flex-d-wrap">
|
|
|
|
- <el-image
|
|
|
|
- v-for="(item, index) in ding_report.images"
|
|
|
|
- :key="index"
|
|
|
|
- style="width: 100px; height: 100px;margin-right:8px"
|
|
|
|
- :src="item"
|
|
|
|
- :preview-src-list="ding_report.images"
|
|
|
|
- ></el-image>
|
|
|
|
|
|
+ <!-- 检查单详情 -->
|
|
|
|
+ <BrawerBox :showDrawer.sync="isShowDetail" drawerTitle="奖票详情">
|
|
|
|
+ <template slot="main">
|
|
|
|
+ <div>
|
|
|
|
+ <div class="flex-box-v">
|
|
|
|
+ <div class="message-box">
|
|
|
|
+ <div class="flex-box-ce">
|
|
|
|
+ <div class="fontColorC">奖票对象</div>
|
|
|
|
+ <div class="flex-1">{{detail.employee_name}}</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="flex-box-ce">
|
|
|
|
+ <div class="fontColorC">事件时间</div>
|
|
|
|
+ <div class="flex-1">{{$moment(detail.date+'').format("YYYY-MM-DD")}}</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="flex-box-ce">
|
|
|
|
+ <div class="fontColorC">发放人</div>
|
|
|
|
+ <div class="flex-1">{{detail.publisher_name||'--'}}</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="flex-box-ce">
|
|
|
|
+ <div class="fontColorC">发放时间</div>
|
|
|
|
+ <div class="flex-1">{{detail.ct}}</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="flex-box-ce">
|
|
|
|
+ <div class="fontColorC">奖票事件</div>
|
|
|
|
+ <div class="flex-1">{{detail.remark.customize||detail.remark.rule}}</div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="message-box" v-if="detail.event">
|
|
|
|
+ <div style="font-size: 16px;margin-bottom: 20px;">对应积分事件</div>
|
|
|
|
+ <div class="flex-box" style="background-color: rgb(248, 252, 255);margin-bottom: 14px;position: relative;padding: 8px;border-radius: 5px;">
|
|
|
|
+ <div class="flex-1" style="padding-right: 20px;">{{detail.event.remark.customize||detail.event.remark.rule}}</div>
|
|
|
|
+ <div class="red" v-if="detail.event.point>0">+{{detail.event.point}} {{detail.event.pt_id==3? 'B分':'A分'}}</div>
|
|
|
|
+ <div class="green" v-else>{{detail.event.point}} {{detail.event.pt_id==3? 'B分':'A分'}}</div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
- </el-dialog>
|
|
|
|
|
|
+ </template>
|
|
|
|
+ <template slot="footer">
|
|
|
|
+ <el-button type="danger" plain @click="deleteItem" v-if="detail.publisher_id==$getUserData().id||($supremeAuthority()!='dept_manager'&&$supremeAuthority()!='employee')">{{detail.publisher_id==$getUserData().id ?'撤回奖票':'删除奖票'}}</el-button>
|
|
|
|
+ <div class="flex-1"></div>
|
|
|
|
+ <el-button plain @click="isShowDetail=false">关 闭</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </BrawerBox>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -255,105 +281,70 @@ import toLead from '@/components/toLead';
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- isDevelopment:process.env.NODE_ENV === 'development',
|
|
|
|
- deleteDisabled: true,
|
|
|
|
- action: process.env.VUE_APP_BASE_API + 'api/integral/import',
|
|
|
|
- ATOKEN: { 'A-TOKEN': this.$getToken(), Accept: 'application/vnd.test.v2+json' },
|
|
|
|
-
|
|
|
|
loading: false,
|
|
loading: false,
|
|
- page_size: 10,
|
|
|
|
- point_types: this.$getTyps(),
|
|
|
|
- dept_name: [],
|
|
|
|
- dept_tree: [],
|
|
|
|
formData: {
|
|
formData: {
|
|
page: 1,
|
|
page: 1,
|
|
page_size: 10,
|
|
page_size: 10,
|
|
status:1,
|
|
status:1,
|
|
dc_status:JSON.stringify([1]),
|
|
dc_status:JSON.stringify([1]),
|
|
- // order_key:'update_time',
|
|
|
|
|
|
+ iSrecorder:0,
|
|
|
|
+ keyword:'',
|
|
|
|
+ has_ticket:0,
|
|
|
|
+ add_subtract:1,
|
|
},
|
|
},
|
|
time_slot: null,
|
|
time_slot: null,
|
|
- rule_trees: [],
|
|
|
|
- props: { checkStrictly: true, value: 'id', label: 'name', children: 'child' },
|
|
|
|
- rule: [],
|
|
|
|
list: [],
|
|
list: [],
|
|
|
|
+
|
|
total: null,
|
|
total: null,
|
|
- detail_info: null,
|
|
|
|
|
|
+ detail_info: {complete_task:{},remark:{},rule_item:{},dc_remark:{},pt_id:3},
|
|
detail_popup: false,
|
|
detail_popup: false,
|
|
detail_loading: false,
|
|
detail_loading: false,
|
|
- pageLimit: 10,
|
|
|
|
- excelImportShow: false,
|
|
|
|
- update_btn: false,
|
|
|
|
- error_list: [],
|
|
|
|
- importErrorInfoShow: false,
|
|
|
|
- fileList: [],
|
|
|
|
|
|
+
|
|
employeeOrdept: !this.$authoritys('employee') && !this.$authoritys('dept_manager'),
|
|
employeeOrdept: !this.$authoritys('employee') && !this.$authoritys('dept_manager'),
|
|
- select_employee_id: '',
|
|
|
|
- employee_map: [],
|
|
|
|
|
|
+ employee_map: this.$getCache('userList'),
|
|
selectionID: [], //删除的事件ID
|
|
selectionID: [], //删除的事件ID
|
|
- // 查看日志
|
|
|
|
- showLog: false,
|
|
|
|
- see_log: 1,
|
|
|
|
- ding_report: {
|
|
|
|
- contents: [],
|
|
|
|
- images: []
|
|
|
|
- },
|
|
|
|
source_type: [
|
|
source_type: [
|
|
- { id: 0, name: '我奖扣的' },
|
|
|
|
- { id: 1, name: '全部事件' },
|
|
|
|
|
|
+ { id: 0, name: '全部事件' },
|
|
|
|
+ { id: 1, name: '我奖扣的' },
|
|
],
|
|
],
|
|
dcArr: [
|
|
dcArr: [
|
|
- { id: 0, name: '全部' },
|
|
|
|
|
|
+ { id: -1, name: '全部' },
|
|
{ id: 1, name: '已发放' },
|
|
{ id: 1, name: '已发放' },
|
|
- { id: 2, name: '未放发' },
|
|
|
|
|
|
+ { id: 0, name: '未发放' },
|
|
],
|
|
],
|
|
- u_start:null
|
|
|
|
|
|
+ isShowDetail:false,
|
|
|
|
+ detail:{remark:{},event:{remark:{}},date:''},
|
|
};
|
|
};
|
|
},
|
|
},
|
|
components: { Steps, toLead,Review },
|
|
components: { Steps, toLead,Review },
|
|
- created() {
|
|
|
|
- this.getEmployee();
|
|
|
|
- },
|
|
|
|
mounted() {
|
|
mounted() {
|
|
- this.deriveRestrict();
|
|
|
|
- this.getDepartment();
|
|
|
|
- this.get_rule_trees();
|
|
|
|
- this.get_integral_list(this.formData);
|
|
|
|
- this.see_log = this.$store.state.config.see_log;
|
|
|
|
- this.point_types = this.getTypes();
|
|
|
|
|
|
+ this.get_integral_list();
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
- selectionID() {
|
|
|
|
- if (this.selectionID.length == 0) {
|
|
|
|
- this.deleteDisabled = true;
|
|
|
|
- } else {
|
|
|
|
- this.deleteDisabled = false;
|
|
|
|
|
|
+ detail_popup(val){
|
|
|
|
+ if(!val){
|
|
|
|
+ this.get_integral_list();
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- 'formData.pt_id'(val, old_val) {
|
|
|
|
|
|
+ 'formData.has_ticket'(val) {
|
|
|
|
+ this.formData.page = 1;
|
|
|
|
+ this.get_integral_list();
|
|
|
|
+ },
|
|
|
|
+ 'formData.keyword'(val) {
|
|
this.formData.page = 1;
|
|
this.formData.page = 1;
|
|
- !val ? delete this.formData.pt_id : '';
|
|
|
|
- this.get_integral_list(this.formData);
|
|
|
|
|
|
+ this.get_integral_list();
|
|
},
|
|
},
|
|
'formData.status'(val) {
|
|
'formData.status'(val) {
|
|
- this.formData.dc_status=JSON.stringify([val]);
|
|
|
|
- // if(val==0){
|
|
|
|
- // this.formData.dc_status=JSON.stringify([1,2]);
|
|
|
|
- // }else if(val==1){
|
|
|
|
- // this.formData.dc_status=JSON.stringify([1]);
|
|
|
|
- // }else{
|
|
|
|
- // this.formData.dc_status=JSON.stringify([2]);
|
|
|
|
- // }
|
|
|
|
this.formData.page = 1;
|
|
this.formData.page = 1;
|
|
- this.get_integral_list(this.formData);
|
|
|
|
|
|
+ this.get_integral_list();
|
|
},
|
|
},
|
|
- 'formData.page'(val, old_val) {
|
|
|
|
- this.get_integral_list(this.formData);
|
|
|
|
|
|
+ 'formData.employee_ids'(val) {
|
|
|
|
+ this.formData.page = 1;
|
|
|
|
+ this.get_integral_list();
|
|
},
|
|
},
|
|
- select_employee_id(val) {
|
|
|
|
|
|
+ 'formData.iSrecorder'(val) {
|
|
this.formData.page = 1;
|
|
this.formData.page = 1;
|
|
- this.formData.employee_ids = val;
|
|
|
|
- this.get_integral_list(this.formData);
|
|
|
|
|
|
+ this.get_integral_list();
|
|
},
|
|
},
|
|
time_slot(val, old_val) {
|
|
time_slot(val, old_val) {
|
|
this.formData.page = 1;
|
|
this.formData.page = 1;
|
|
@@ -364,221 +355,65 @@ export default {
|
|
delete this.formData.start_day;
|
|
delete this.formData.start_day;
|
|
delete this.formData.end_day;
|
|
delete this.formData.end_day;
|
|
}
|
|
}
|
|
- this.get_integral_list(this.formData);
|
|
|
|
- },
|
|
|
|
- u_start(val, old_val) {
|
|
|
|
- this.formData.page = 1;
|
|
|
|
- if (val !== null) {
|
|
|
|
- this.formData.u_start_day = val[0];
|
|
|
|
- this.formData.u_end_day = val[1];
|
|
|
|
- } else {
|
|
|
|
- delete this.formData.u_start_day;
|
|
|
|
- delete this.formData.u_end_day;
|
|
|
|
- }
|
|
|
|
- this.get_integral_list(this.formData);
|
|
|
|
- },
|
|
|
|
- dept_name(val, old_val) {
|
|
|
|
- this.formData.page = 1;
|
|
|
|
- if (val.length !== 0) {
|
|
|
|
- this.formData.dept_ids = val[val.length - 1];
|
|
|
|
- } else {
|
|
|
|
- this.formData.dept_ids = 0;
|
|
|
|
- }
|
|
|
|
- this.$nextTick(() => {
|
|
|
|
- this.$refs.dept.dropDownVisible = false;
|
|
|
|
- this.get_integral_list(this.formData);
|
|
|
|
- });
|
|
|
|
|
|
+ this.get_integral_list();
|
|
},
|
|
},
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- //获取员工列表
|
|
|
|
- getEmployee() {
|
|
|
|
- this.$axios('get', '/api/employee/index', { dept_id: 0, keywords: '', page: 1, page_size: 3000, is_official: 1 }).then(res => {
|
|
|
|
- let list = res.data.data.list;
|
|
|
|
- this.employee_map = list;
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- deriveRestrict() {
|
|
|
|
- this.deriveNum = 0;
|
|
|
|
- this.$axios('GET', '/api/site/info').then(res => {
|
|
|
|
- if (res.data.code == 1) {
|
|
|
|
- this.deriveNum = Number(res.data.data.export_max_num);
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- getTypes() {
|
|
|
|
- var arr = this.$getTyps();
|
|
|
|
- return arr.filter(function(item) {
|
|
|
|
- return item.code != 'JX';
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- handleRemove(file, fileList) {
|
|
|
|
- // if (fileList !== null && fileList.length != 0) {
|
|
|
|
- // this.import_btn_show = true;
|
|
|
|
- // } else {
|
|
|
|
- // this.import_btn_show = false;
|
|
|
|
- // }
|
|
|
|
- },
|
|
|
|
- // 导入相关
|
|
|
|
- close_import() {
|
|
|
|
- this.excelImportShow = false;
|
|
|
|
- this.$refs.upload.clearFiles();
|
|
|
|
- },
|
|
|
|
- // keyword
|
|
|
|
- keyWordSelect() {
|
|
|
|
- this.formData.page = 1;
|
|
|
|
- this.get_integral_list(this.formData);
|
|
|
|
- },
|
|
|
|
- downloadTemplate() {
|
|
|
|
- window.open(process.env.VUE_APP_BASE_API + 'api/download/integral/template');
|
|
|
|
- },
|
|
|
|
- uploadFile() {
|
|
|
|
- let params = {};
|
|
|
|
- params.file = this.file;
|
|
|
|
- this.update_btn = true;
|
|
|
|
- this.$axios('post', '/api/integral/import', params, 'v2')
|
|
|
|
- .then(res => {
|
|
|
|
- if (res.data.code == 1) {
|
|
|
|
- if (res.data.data.error.length == 0) {
|
|
|
|
- this.$message({ type: 'success', message: '导入成功' });
|
|
|
|
- this.excelImportShow = false;
|
|
|
|
- } else {
|
|
|
|
- this.$message({ type: 'error', message: '导入错误' });
|
|
|
|
- this.error_list = res.data.data.error;
|
|
|
|
- this.importErrorInfoShow = true;
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- this.$message({ type: 'error', message: res.data.msg });
|
|
|
|
- }
|
|
|
|
|
|
+ deleteItem(){
|
|
|
|
+ this.$confirm(`确定${this.detail.publisher_id==this.$getUserData().id? '撤回':'删除'}此奖票?`, '提示', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
+ type: 'warning'
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.$axios("post", "/api/integral/ticket/del",{id:this.detail.id}).then(res => {
|
|
|
|
+ this.$message.success(this.detail.publisher_id==this.$getUserData().id? "已撤回":'已删除');
|
|
|
|
+ this.open_detail({id:this.detail_info.event_id});
|
|
|
|
+ this.isShowDetail=false;
|
|
})
|
|
})
|
|
- .finally(() => {
|
|
|
|
- setTimeout(() => {
|
|
|
|
- this.update_btn = false;
|
|
|
|
- }, 3000);
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- tealConfirm() {
|
|
|
|
- this.keyWordSelect();
|
|
|
|
- },
|
|
|
|
- handleOnthecross(event, file, fileList) {
|
|
|
|
- this.nowIndex = 2;
|
|
|
|
- },
|
|
|
|
- handlePictureCardPrediv(response) {
|
|
|
|
- if (response.code == 1) {
|
|
|
|
- response.data.id = 1;
|
|
|
|
- } else {
|
|
|
|
- response.data.id = 0;
|
|
|
|
- response.data.name = response.msg;
|
|
|
|
- }
|
|
|
|
- this.toleadResult = response.data;
|
|
|
|
- this.nowIndex = 3;
|
|
|
|
- return;
|
|
|
|
- // this.nowIndex = 3
|
|
|
|
- if (response.code == 1) {
|
|
|
|
- if (response.data.error.length > 0) {
|
|
|
|
- var htmls = response.data.error;
|
|
|
|
- var str = "<div class='red'></div>";
|
|
|
|
- htmls.forEach(item => {
|
|
|
|
- str += `<div>${item}</div>`;
|
|
|
|
- });
|
|
|
|
- // this.close_import();
|
|
|
|
- this.$notify.error({
|
|
|
|
- title: '导入错误',
|
|
|
|
- dangerouslyUseHTMLString: true,
|
|
|
|
- message: str,
|
|
|
|
- duration: 0,
|
|
|
|
- offset: 50,
|
|
|
|
- customClass: 'notifyBox'
|
|
|
|
- });
|
|
|
|
- } else {
|
|
|
|
- this.file = response.data;
|
|
|
|
- this.$message.success({ message: response.msg });
|
|
|
|
- this.keyWordSelect();
|
|
|
|
- this.close_import();
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- this.$message.error({ message: response.msg });
|
|
|
|
- }
|
|
|
|
|
|
+ }).catch(() => {});
|
|
},
|
|
},
|
|
- beforeFilesUpload(file) {
|
|
|
|
- const $ext_list = ['xlsx', 'xls'];
|
|
|
|
- let len = file.name.split('.').length - 1;
|
|
|
|
- const $ext_name = file.name.split('.')[len];
|
|
|
|
- if ($ext_list.indexOf($ext_name) != -1) {
|
|
|
|
- } else {
|
|
|
|
- this.toleadResult.id = 0;
|
|
|
|
- this.toleadResult.name = '文件格式上传错误,仅支持上传xlsx,xls)';
|
|
|
|
- this.nowIndex = 3;
|
|
|
|
- // this.$message.warning('文件格式上传错误,仅支持上传xlsx,xls)');
|
|
|
|
|
|
+ selectable(row) {
|
|
|
|
+ if (row.has_ticket) {
|
|
return false;
|
|
return false;
|
|
|
|
+ } else {
|
|
|
|
+ return true;
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- exportExcel() {
|
|
|
|
- if (this.deriveNum > 0 && this.total >= this.deriveNum) {
|
|
|
|
- this.$message.warning('当前数据已超出' + this.deriveNum + '条,请拆分时间段分批导出');
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
- window.open(
|
|
|
|
- process.env.VUE_APP_BASE_API +
|
|
|
|
- 'api/download/integral?employee_id=' +
|
|
|
|
- this.$getUserData().id +
|
|
|
|
- '&page=' +
|
|
|
|
- this.formData.page +
|
|
|
|
- '&page_size=' +
|
|
|
|
- this.formData.page_size +
|
|
|
|
- (this.formData.employee_ids ? '&employee_ids=' + this.formData.employee_ids : '') +
|
|
|
|
- (this.formData.rule_id ? '&rule_id=' + this.formData.rule_id : '') +
|
|
|
|
- (this.formData.pt_id ? '&pt_id=' + this.formData.pt_id : '') +
|
|
|
|
- (this.formData.dept_ids ? '&dept_ids=' + this.formData.dept_ids : '') +
|
|
|
|
- (this.formData.start_day ? '&start_day=' + this.formData.start_day : '') +
|
|
|
|
- (this.formData.end_day ? '&end_day=' + this.formData.end_day : '') +
|
|
|
|
- (this.formData.dc_status ? '&dc_status=' + this.formData.dc_status : '') +
|
|
|
|
- (this.formData.keyword ? '&keyword=' + this.formData.keyword : ''),
|
|
|
|
- '_blank'
|
|
|
|
- );
|
|
|
|
- },
|
|
|
|
- // end 文件上传
|
|
|
|
- handleSizeChange(val) {
|
|
|
|
- this.pageLimit = val;
|
|
|
|
- this.formData.page_size = this.pageLimit;
|
|
|
|
- this.get_integral_list(this.formData);
|
|
|
|
- },
|
|
|
|
- cuttString(data) {
|
|
|
|
- return data.substring(5);
|
|
|
|
|
|
+ openDetail(item){
|
|
|
|
+ this.$axios("get", "/api/integral/ticket/info",{event_id:item.id}).then(res => {
|
|
|
|
+ this.detail=res.data.data;
|
|
|
|
+ this.isShowDetail=true;
|
|
|
|
+ })
|
|
},
|
|
},
|
|
- deleteInBatches() {
|
|
|
|
- if (this.selectionID.length < 1) {
|
|
|
|
- return false;
|
|
|
|
- }
|
|
|
|
- this.$confirm('此操作将永久删除选中的积分事件, 确认要删除吗?', '批量删除事件', {
|
|
|
|
|
|
+ deleteInBatches(item,is){
|
|
|
|
+ this.$confirm('你确定发放奖票?', '提示', {
|
|
confirmButtonText: '确定',
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
cancelButtonText: '取消',
|
|
- type: 'warning'
|
|
|
|
- })
|
|
|
|
- .then(() => {
|
|
|
|
- this.loading = true;
|
|
|
|
- this.$axios('POST', '/api/integral/statistics/integral/many', { event_ids: this.selectionID })
|
|
|
|
- .then(res => {
|
|
|
|
- if (res.data.code == 1) {
|
|
|
|
- this.$message({
|
|
|
|
- message: res.data.msg,
|
|
|
|
- type: 'success'
|
|
|
|
- });
|
|
|
|
- if (this.selectionID.length == this.list.length) {
|
|
|
|
- if (this.formData.page > 1) {
|
|
|
|
- this.formData.page = this.formData.page - 1;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- this.get_integral_list(this.formData);
|
|
|
|
- } else {
|
|
|
|
- this.$message.error(res.data.msg);
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- .finally(() => {
|
|
|
|
- this.loading = false;
|
|
|
|
- });
|
|
|
|
|
|
+ type: 'info'
|
|
|
|
+ }).then(() => {
|
|
|
|
+ let data={}
|
|
|
|
+ if(item){
|
|
|
|
+ data={event_ids:item.id}
|
|
|
|
+ }else{
|
|
|
|
+ data={event_ids:this.selectionID.toString()}
|
|
|
|
+ }
|
|
|
|
+ this.$axios("post", "/api/integral/ticket/create",data,'v2').then(res => {
|
|
|
|
+ if(is){
|
|
|
|
+ this.$message.success("已发放");
|
|
|
|
+ this.open_detail({id:this.detail_info.event_id});
|
|
|
|
+ this.openDetail(item);
|
|
|
|
+ }else{
|
|
|
|
+ this.$message.success("已发放");
|
|
|
|
+ this.get_integral_list();
|
|
|
|
+ }
|
|
})
|
|
})
|
|
- .catch(() => {});
|
|
|
|
|
|
+ }).catch(() => {});
|
|
|
|
+ },
|
|
|
|
+ getTypes() {
|
|
|
|
+ var arr = this.$getTyps();
|
|
|
|
+ return arr.filter(function(item) {
|
|
|
|
+ return item.code != 'JX';
|
|
|
|
+ });
|
|
},
|
|
},
|
|
deleteEvents(selection) {
|
|
deleteEvents(selection) {
|
|
let listId = [];
|
|
let listId = [];
|
|
@@ -597,10 +432,6 @@ export default {
|
|
.then(res => {
|
|
.then(res => {
|
|
if (res.data.code == 1) {
|
|
if (res.data.code == 1) {
|
|
this.detail_info = res.data.data;
|
|
this.detail_info = res.data.data;
|
|
- var ding_report = res.data.data.remark.ding_report;
|
|
|
|
- if (Object.keys(ding_report).length != 0) {
|
|
|
|
- this.ding_report = res.data.data.remark.ding_report;
|
|
|
|
- }
|
|
|
|
} else {
|
|
} else {
|
|
this.$message.error(res.data.data.msg);
|
|
this.$message.error(res.data.data.msg);
|
|
}
|
|
}
|
|
@@ -609,48 +440,34 @@ export default {
|
|
this.detail_loading = false;
|
|
this.detail_loading = false;
|
|
});
|
|
});
|
|
},
|
|
},
|
|
- //获取部门
|
|
|
|
- getDepartment() {
|
|
|
|
- this.$axios('get', '/api/department/tree').then(res => {
|
|
|
|
- this.dept_tree = this.getTreeData(res.data.data.list);
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- //获取规则
|
|
|
|
- get_rule_trees() {
|
|
|
|
- this.$axios('get', '/api/integral/rule/trees').then(res => {
|
|
|
|
- this.rule_trees = this.getRuleTreeData(res.data.data.rule_tree);
|
|
|
|
- });
|
|
|
|
- },
|
|
|
|
- get_integral_list(data) {
|
|
|
|
|
|
+ get_integral_list() {
|
|
this.loading = true;
|
|
this.loading = true;
|
|
- this.$axios('get', '/api/integral/statistics/integral', data)
|
|
|
|
- .then(res => {
|
|
|
|
- if (res.data.code == 1) {
|
|
|
|
- this.list = res.data.data.list;
|
|
|
|
- if(data.page==1){
|
|
|
|
- this.total = res.data.data.total;
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- this.$message.error(res.data.data.msg);
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
- .finally(() => {
|
|
|
|
- this.loading = false;
|
|
|
|
- });
|
|
|
|
|
|
+ let data=JSON.parse(JSON.stringify(this.formData))
|
|
|
|
+ if(this.employeeOrdept){
|
|
|
|
+ if(this.formData.iSrecorder==1){
|
|
|
|
+ data.recorder_id=this.$getUserData().id
|
|
|
|
+ }
|
|
|
|
+ }else{
|
|
|
|
+ data.recorder_id=this.$getUserData().id
|
|
|
|
+ }
|
|
|
|
+ data.employee_ids=data.employee_ids.toString()
|
|
|
|
+ this.$axios('get', '/api/integral/statistics/integral',data).then(res => {
|
|
|
|
+ this.list = res.data.data.list;
|
|
|
|
+ if(data.page==1){
|
|
|
|
+ this.total = res.data.data.total;
|
|
|
|
+ }
|
|
|
|
+ }).finally(() => {
|
|
|
|
+ this.loading = false;
|
|
|
|
+ });
|
|
},
|
|
},
|
|
handleCurrentChange(val) {
|
|
handleCurrentChange(val) {
|
|
- this.formData.page = val;
|
|
|
|
|
|
+ this.formData.page = val;
|
|
|
|
+ this.get_integral_list();
|
|
},
|
|
},
|
|
- rule_null(val) {
|
|
|
|
- if (val.length == 0) {
|
|
|
|
- this.formData.rule_id = 0;
|
|
|
|
- } else {
|
|
|
|
- this.formData.rule_id = this.rule[this.rule.length - 1];
|
|
|
|
- }
|
|
|
|
- this.$nextTick(() => {
|
|
|
|
- this.$refs.rule.dropDownVisible = false;
|
|
|
|
- this.get_integral_list(this.formData);
|
|
|
|
- });
|
|
|
|
|
|
+ handleSizeChange(val) {
|
|
|
|
+ this.formData.page_size =val;
|
|
|
|
+ this.formData.page = 1;
|
|
|
|
+ this.get_integral_list();
|
|
},
|
|
},
|
|
del_integral_event(item) {
|
|
del_integral_event(item) {
|
|
this.$confirm('删除事件的同时也会撤销积分,确定删除吗?', '提示', {
|
|
this.$confirm('删除事件的同时也会撤销积分,确定删除吗?', '提示', {
|
|
@@ -659,56 +476,35 @@ export default {
|
|
type: 'warning'
|
|
type: 'warning'
|
|
}).then(() => {
|
|
}).then(() => {
|
|
this.$axios('post', '/api/integral/statistics/integral/destroy', { event_id: item.event_id }).then(res => {
|
|
this.$axios('post', '/api/integral/statistics/integral/destroy', { event_id: item.event_id }).then(res => {
|
|
- if (res.data.code == 1) {
|
|
|
|
- this.$message.success(res.data.msg);
|
|
|
|
- this.detail_popup = false;
|
|
|
|
- this.get_integral_list(this.formData);
|
|
|
|
- } else {
|
|
|
|
- this.$message.error(res.data.msg);
|
|
|
|
- }
|
|
|
|
|
|
+ this.$message.success(res.data.msg);
|
|
|
|
+ this.detail_popup = false;
|
|
|
|
+ this.get_integral_list();
|
|
});
|
|
});
|
|
});
|
|
});
|
|
},
|
|
},
|
|
- close_integral_event() {
|
|
|
|
- this.detail_popup = false;
|
|
|
|
- },
|
|
|
|
point_name(id) {
|
|
point_name(id) {
|
|
- return this.point_types.find(item => {
|
|
|
|
|
|
+ let point_types=this.$getTyps();
|
|
|
|
+ return point_types.find(item => {
|
|
if (item.id == id) {
|
|
if (item.id == id) {
|
|
return item.name;
|
|
return item.name;
|
|
}
|
|
}
|
|
}).name;
|
|
}).name;
|
|
},
|
|
},
|
|
- // 递归判断列表,把最后的children设为undefined
|
|
|
|
- getTreeData(data) {
|
|
|
|
- for (var i = 0; i < data.length; i++) {
|
|
|
|
- if (data[i]._child.length < 1) {
|
|
|
|
- // children若为空数组,则将children设为undefined
|
|
|
|
- data[i]._child = undefined;
|
|
|
|
- } else {
|
|
|
|
- // children若不为空数组,则继续 递归调用 本方法
|
|
|
|
- this.getTreeData(data[i]._child);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- return data;
|
|
|
|
- },
|
|
|
|
- // 规则递归 children
|
|
|
|
- getRuleTreeData(data) {
|
|
|
|
- for (var i = 0; i < data.length; i++) {
|
|
|
|
- if (data[i].child.length < 1) {
|
|
|
|
- // children若为空数组,则将children设为undefined
|
|
|
|
- data[i].child = undefined;
|
|
|
|
- } else {
|
|
|
|
- // children若不为空数组,则继续 递归调用 本方法
|
|
|
|
- this.getRuleTreeData(data[i].child);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- return data;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
|
|
+ .message-box .label{
|
|
|
|
+ font-size: 18px;
|
|
|
|
+ font-weight: 600;
|
|
|
|
+ margin-bottom: 20px;
|
|
|
|
+ }
|
|
|
|
+ .message-box .flex-box-ce{
|
|
|
|
+ margin-bottom:16px ;
|
|
|
|
+ }
|
|
|
|
+ .message-box .fontColorC{
|
|
|
|
+ width: 100px;
|
|
|
|
+ }
|
|
.remark {
|
|
.remark {
|
|
display: -webkit-box;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-orient: vertical;
|