grantAward.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. <template>
  2. <div>
  3. <div class="all padding-20">
  4. <FormBox>
  5. <div class="form-item">
  6. <div class="form-label">姓名搜索</div>
  7. <div class="form-search">
  8. <el-select size="medium" multiple v-model="formData.employee_ids" filterable clearable placeholder="请输入或选择人员">
  9. <el-option v-for="item in employee_map" :key="item.id" :label="item.name" :value="item.id"></el-option>
  10. </el-select>
  11. </div>
  12. </div>
  13. <div class="form-item">
  14. <div class="form-label">发放状态</div>
  15. <div class="form-search">
  16. <el-select size="medium" v-model="formData.has_ticket">
  17. <el-option v-for="item in dcArr" :key="item.name" :label="item.name" :value="item.id"></el-option>
  18. </el-select>
  19. </div>
  20. </div>
  21. <div class="form-item">
  22. <div class="form-label">
  23. <el-tooltip effect="dark" placement="top">
  24. <template slot="content">
  25. 此处的“我奖扣的”包含所有与我有关的积分事件(1、我直接奖扣成功,2、申请、任务、奖扣<br/> 提交上来由我作为第一审批人审批的,3、积分导入填写的奖扣记录人是我)
  26. </template>
  27. <span>相关性 <i class="el-icon-warning"></i></span>
  28. </el-tooltip>
  29. </div>
  30. <div class="form-search">
  31. <el-select size="medium" v-model="formData.iSrecorder">
  32. <el-option v-for="item in source_type" :key="item.name" :label="item.name" :value="item.id"></el-option>
  33. </el-select>
  34. </div>
  35. </div>
  36. <div class="form-item">
  37. <div class="form-label">事件时间</div>
  38. <div class="form-search">
  39. <el-date-picker
  40. v-model="time_slot"
  41. type="daterange"
  42. size="medium"
  43. value-format="yyyy-MM-dd"
  44. range-separator="至"
  45. start-placeholder="开始日期"
  46. end-placeholder="结束日期"
  47. ></el-date-picker>
  48. </div>
  49. </div>
  50. <div class="form-item">
  51. <div class="form-label">内容搜索</div>
  52. <div class="form-search">
  53. <el-input size="medium" v-model="formData.keyword" max="20" placeholder="请输入" clearable></el-input>
  54. </div>
  55. </div>
  56. </FormBox>
  57. <div style="margin: 10px 0;">
  58. <el-button size="medium" :disabled="selectionID.length==0? true:false" @click="deleteInBatches()" type="primary">批量发放奖票</el-button>
  59. </div>
  60. <div class="diy-tip1" style="margin-bottom: 10px;">
  61. <div>当前数据:{{ total }}条</div>
  62. </div>
  63. <!-- 表格 -->
  64. <div>
  65. <el-table :data="list" style="width: 100%;" v-loading="loading" @selection-change="deleteEvents">
  66. <el-table-column type="selection" width="55" :selectable="selectable"></el-table-column>
  67. <el-table-column prop="employee_name" label="姓名" align="left" min-width="150px">
  68. <template slot-scope="scope">
  69. <div class="flex-box">
  70. <userImage :user_name="scope.row.employee_name" :img_url="scope.row.employee_img_url" width="50px" height="50px"></userImage>
  71. <div style="height: 50px;padding-left: 10px;" class="flex-box-v flex-h-zhu">
  72. <div>{{ scope.row.employee_name }}</div>
  73. <div v-if="scope.row.dept" style="font-size: 12px;max-width: 150px;" class="fontColorC font-flex-word">{{ scope.row.dept }}</div>
  74. </div>
  75. </div>
  76. </template>
  77. </el-table-column>
  78. <el-table-column prop="remark" label="事件内容" align="left" min-width="280px">
  79. <template slot-scope="scope">
  80. <el-tooltip class="item" effect="dark" placement="top">
  81. <div slot="content" style="width: 400px;">{{ scope.row.remark }}</div>
  82. <div class="remark">{{ scope.row.remark }}</div>
  83. </el-tooltip>
  84. </template>
  85. </el-table-column>
  86. <el-table-column prop="point" label="积分" align="left" min-width="120px">
  87. <template slot-scope="scope">
  88. <span :class="scope.row.point < 0 ? 'green' : 'red'">{{ scope.row.point }} {{ point_name(scope.row.pt_id) }}</span>
  89. </template>
  90. </el-table-column>
  91. <el-table-column prop="create_time" label="事件时间" align="left" min-width="140px">
  92. <template slot-scope="scope">
  93. {{ scope.row.event_time }}
  94. </template>
  95. </el-table-column>
  96. <el-table-column prop="source_type" label="来源" align="left" min-width="140px">
  97. <template slot-scope="scope">
  98. <span v-show="scope.row.source_type == 1">
  99. 积分奖扣
  100. <span v-if="scope.row.recorder_name">({{ scope.row.recorder_name }})</span>
  101. </span>
  102. <span v-show="scope.row.source_type == 2">任务</span>
  103. <span v-show="scope.row.source_type == 3">积分系统分配</span>
  104. <span v-show="scope.row.source_type == 4">考勤系统分配</span>
  105. <span v-show="scope.row.source_type == 5">
  106. 积分申请
  107. <span v-if="scope.row.applyor_name">({{ scope.row.applyor_name }})</span>
  108. </span>
  109. <span v-show="scope.row.source_type == 6">绩效任务包</span>
  110. <span v-show="scope.row.source_type == 8">积分导入</span>
  111. <span v-show="scope.row.source_type == 9">A分转B分</span>
  112. <span v-show="scope.row.source_type == 10">钉钉汇报(日志)奖扣分</span>
  113. <span v-show="scope.row.source_type > 10">其他</span>
  114. </template>
  115. </el-table-column>
  116. <el-table-column prop="update_time" label="发放状态" align="left" width="140px">
  117. <template slot-scope="scope">
  118. <span class="green" v-if="scope.row.has_ticket">已发放</span>
  119. <span class="fontColorC" v-else>未发放</span>
  120. </template>
  121. </el-table-column>
  122. <el-table-column width="150" label="操作">
  123. <template slot-scope="scope">
  124. <span class="blue" style="cursor: pointer;padding-right: 10px;" @click="open_detail(scope.row)">查看详情</span>
  125. <span class="blue" style="cursor: pointer;" v-if="!scope.row.has_ticket" @click="deleteInBatches(scope.row)">发放奖票</span>
  126. </template>
  127. </el-table-column>
  128. <template slot="empty">
  129. <noData></noData>
  130. </template>
  131. </el-table>
  132. <center class="pagination">
  133. <el-pagination
  134. background
  135. @size-change="handleSizeChange"
  136. @current-change="handleCurrentChange"
  137. :current-page="formData.page"
  138. :page-sizes="[10, 20, 50, 100]"
  139. layout="total, sizes, prev, pager, next"
  140. :page-size="formData.page_size"
  141. :total="total"
  142. ></el-pagination>
  143. </center>
  144. </div>
  145. </div>
  146. <el-drawer title="事件详情" :visible.sync="detail_popup" ref="drawer" show-close :with-header="false" :width="'500px'">
  147. <div class="drawer_title flex-box-ce">
  148. <span class="flex-1">事件详情</span>
  149. <i @click="detail_popup=false" style="cursor: pointer;" class="el-icon-close"></i>
  150. </div>
  151. <div class="detail_popup" v-loading="detail_loading" v-if="detail_info !== null">
  152. <el-row style="padding-bottom:10px;border-bottom:1px #f8f8f8 solid;">
  153. <div class="flex-box flex-v-ce">
  154. <userImage :user_name="detail_info.employee_name" :img_url="detail_info.img_url" width="50px" height="50px" fontSize="1"></userImage>
  155. <span style="font-size: 18px;line-height:50px; margin-left:10px;margin-right:4px;">{{ detail_info.employee_name }}</span>
  156. <span class="red point" v-if="detail_info.point >= 0">+{{ detail_info.point }} {{ point_name(detail_info.pt_id) }}</span>
  157. <span class="green point" v-if="detail_info.point < 0">{{ detail_info.point }} {{ point_name(detail_info.pt_id) }}</span>
  158. </div>
  159. </el-row>
  160. <el-row >
  161. <el-col :span="6">事件内容</el-col>
  162. <el-col :span="18" v-if="detail_info.remark">{{ detail_info.remark && (detail_info.remark.customize || detail_info.remark.rule) }}</el-col>
  163. </el-row>
  164. <el-row v-show="detail_info.files && detail_info.files.length > 0">
  165. <el-col :span="18" :offset="6">
  166. <el-image
  167. v-for="(itme, index) in detail_info.files"
  168. :key="index"
  169. style="width: 80px; height: 80px;margin: 0 5px;"
  170. :src="itme"
  171. :preview-src-list="detail_info.files"
  172. ></el-image>
  173. </el-col>
  174. </el-row>
  175. <el-row v-show="detail_info.rule_list">
  176. <el-col :span="6">规则分类</el-col>
  177. <el-col :span="18">{{ detail_info.rule_list }}</el-col>
  178. </el-row>
  179. <el-row v-show="detail_info.source_type_mark">
  180. <el-col :span="6">来源类型</el-col>
  181. <el-col :span="18">{{ detail_info.source_type_mark }}</el-col>
  182. </el-row>
  183. <el-row v-show="detail_info.recorder_name">
  184. <el-col :span="6">记录人</el-col>
  185. <el-col :span="18">{{ detail_info.recorder_name }}</el-col>
  186. </el-row>
  187. <el-row v-show="detail_info.date">
  188. <el-col :span="6">事件时间</el-col>
  189. <el-col :span="18">{{ detail_info.date }}</el-col>
  190. </el-row>
  191. <el-row v-show="detail_info.complete_task.time">
  192. <el-col :span="6">完成时间</el-col>
  193. <el-col :span="18">{{ detail_info.complete_task.time }}</el-col>
  194. </el-row>
  195. <el-row v-show="detail_info.complete_task.remark">
  196. <el-col :span="6">完成备注</el-col>
  197. <el-col :span="18">{{ detail_info.complete_task.remark }}</el-col>
  198. </el-row>
  199. <el-row v-show="detail_info.complete_task && detail_info.complete_task.files && detail_info.complete_task.files.length > 0">
  200. <el-col :span="18" :offset="6">
  201. <el-image
  202. v-for="(itme, index) in detail_info.complete_task.files"
  203. :key="index"
  204. style="width: 80px; height: 80px;margin: 0 5px;"
  205. :src="itme"
  206. :preview-src-list="detail_info.complete_task.files"
  207. ></el-image>
  208. </el-col>
  209. </el-row>
  210. <div v-show="detail_info.rule_id">
  211. <p class="row_title">规则依据</p>
  212. <el-row>
  213. <el-col :span="6">规则分类</el-col>
  214. <el-col :span="18">{{ detail_info.rule_list }}</el-col>
  215. </el-row>
  216. <el-row v-show="detail_info.remark.rule">
  217. <el-col :span="6">积分规则</el-col>
  218. <el-col :span="18">{{ detail_info.remark.rule }}</el-col>
  219. </el-row>
  220. <el-row>
  221. <el-col :span="6">积分</el-col>
  222. <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>
  223. <el-col :span="18" v-show="detail_info.rule_item.min_point != detail_info.rule_item.max_point">
  224. {{ detail_info.rule_item.min_point }} ~ {{ detail_info.rule_item.max_point }} {{ point_name(detail_info.pt_id) }}
  225. </el-col>
  226. </el-row>
  227. </div>
  228. <div v-show="detail_info.process"><Steps :process="detail_info.process"></Steps></div>
  229. <div v-show="detail_info.dc_remark.flow"><Review :process="detail_info.dc_remark.flow" :status="detail_info.dc_status"></Review></div>
  230. </div>
  231. <div style="position: absolute; bottom: 20px;right: 20px;left: 20px;" class="flex-box-ce">
  232. <el-button type="primary" v-if="!detail_info.has_ticket" @click="deleteInBatches({id:detail_info.event_id},true)">发放奖票</el-button>
  233. <el-button type="primary" v-else @click="openDetail({id:detail_info.event_id})">查看奖票</el-button>
  234. <div class="flex-1"></div>
  235. <el-button @click="detail_popup=false">取消</el-button>
  236. </div>
  237. </el-drawer>
  238. <!-- 检查单详情 -->
  239. <BrawerBox :showDrawer.sync="isShowDetail" drawerTitle="奖票详情">
  240. <template slot="main">
  241. <div>
  242. <div class="flex-box-v">
  243. <div class="message-box">
  244. <div class="flex-box-ce">
  245. <div class="fontColorC">奖票对象</div>
  246. <div class="flex-1">{{detail.employee_name}}</div>
  247. </div>
  248. <div class="flex-box-ce">
  249. <div class="fontColorC">事件时间</div>
  250. <div class="flex-1">{{$moment(detail.date+'').format("YYYY-MM-DD")}}</div>
  251. </div>
  252. <div class="flex-box-ce">
  253. <div class="fontColorC">发放人</div>
  254. <div class="flex-1">{{detail.publisher_name||'--'}}</div>
  255. </div>
  256. <div class="flex-box-ce">
  257. <div class="fontColorC">发放时间</div>
  258. <div class="flex-1">{{detail.ct}}</div>
  259. </div>
  260. <div class="flex-box-ce">
  261. <div class="fontColorC">奖票事件</div>
  262. <div class="flex-1">{{detail.remark.customize||detail.remark.rule}}</div>
  263. </div>
  264. </div>
  265. </div>
  266. <div class="message-box" v-if="detail.event">
  267. <div style="font-size: 16px;margin-bottom: 20px;">对应积分事件</div>
  268. <div class="flex-box" style="background-color: rgb(248, 252, 255);margin-bottom: 14px;position: relative;padding: 8px;border-radius: 5px;">
  269. <div class="flex-1" style="padding-right: 20px;">{{detail.event.remark.customize||detail.event.remark.rule}}</div>
  270. <div class="red" v-if="detail.event.point>0">+{{detail.event.point}} {{detail.event.pt_id==3? 'B分':'A分'}}</div>
  271. <div class="green" v-else>{{detail.event.point}} {{detail.event.pt_id==3? 'B分':'A分'}}</div>
  272. </div>
  273. </div>
  274. </div>
  275. </template>
  276. <template slot="footer">
  277. <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>
  278. <div class="flex-1"></div>
  279. <el-button plain @click="isShowDetail=false">关 闭</el-button>
  280. </template>
  281. </BrawerBox>
  282. </div>
  283. </template>
  284. <script>
  285. import Steps from '@/components/Steps';
  286. import Review from '@/components/Review';
  287. import toLead from '@/components/toLead';
  288. import {_debounce} from '@/api/auth';
  289. export default {
  290. data() {
  291. return {
  292. loading: false,
  293. formData: {
  294. page: 1,
  295. page_size: 10,
  296. status:1,
  297. dc_status:JSON.stringify([1]),
  298. iSrecorder:0,
  299. keyword:'',
  300. has_ticket:0,
  301. add_subtract:1,
  302. employee_ids:[],
  303. },
  304. time_slot: null,
  305. list: [],
  306. total: null,
  307. detail_info: {complete_task:{},remark:{},rule_item:{},dc_remark:{},pt_id:3},
  308. detail_popup: false,
  309. detail_loading: false,
  310. employeeOrdept: !this.$authoritys('employee') && !this.$authoritys('dept_manager'),
  311. employee_map: this.$getCache('userList'),
  312. selectionID: [], //删除的事件ID
  313. source_type: [
  314. { id: 0, name: '全部事件' },
  315. { id: 1, name: '我奖扣的' },
  316. ],
  317. dcArr: [
  318. { id: -1, name: '全部' },
  319. { id: 1, name: '已发放' },
  320. { id: 0, name: '未发放' },
  321. ],
  322. isShowDetail:false,
  323. detail:{remark:{},event:{remark:{}},date:''},
  324. };
  325. },
  326. components: { Steps, toLead,Review },
  327. mounted() {
  328. this.get_integral_list();
  329. },
  330. watch: {
  331. detail_popup(val){
  332. if(!val){
  333. this.get_integral_list();
  334. }
  335. },
  336. 'formData.has_ticket'(val) {
  337. this.formData.page = 1;
  338. this.get_integral_list();
  339. },
  340. 'formData.keyword': {
  341. deep: true,
  342. handler: _debounce(function(val) {
  343. this.formData.page = 1;
  344. this.get_integral_list();
  345. }, 1000)
  346. },
  347. 'formData.status'(val) {
  348. this.formData.page = 1;
  349. this.get_integral_list();
  350. },
  351. 'formData.employee_ids'(val) {
  352. this.formData.page = 1;
  353. this.get_integral_list();
  354. },
  355. 'formData.iSrecorder'(val) {
  356. this.formData.page = 1;
  357. this.get_integral_list();
  358. },
  359. time_slot(val, old_val) {
  360. this.formData.page = 1;
  361. if (val !== null) {
  362. this.formData.start_day = val[0];
  363. this.formData.end_day = val[1];
  364. } else {
  365. delete this.formData.start_day;
  366. delete this.formData.end_day;
  367. }
  368. this.get_integral_list();
  369. },
  370. },
  371. methods: {
  372. deleteItem(){
  373. this.$confirm(`确定${this.detail.publisher_id==this.$getUserData().id? '撤回':'删除'}此奖票?`, '提示', {
  374. confirmButtonText: '确定',
  375. cancelButtonText: '取消',
  376. type: 'warning'
  377. }).then(() => {
  378. this.$axios("post", "/api/integral/ticket/del",{id:this.detail.id}).then(res => {
  379. this.$message.success(this.detail.publisher_id==this.$getUserData().id? "已撤回":'已删除');
  380. this.open_detail({id:this.detail_info.event_id});
  381. this.isShowDetail=false;
  382. })
  383. }).catch(() => {});
  384. },
  385. selectable(row) {
  386. if (row.has_ticket) {
  387. return false;
  388. } else {
  389. return true;
  390. }
  391. },
  392. openDetail(item){
  393. this.$axios("get", "/api/integral/ticket/info",{event_id:item.id}).then(res => {
  394. this.detail=res.data.data;
  395. this.isShowDetail=true;
  396. })
  397. },
  398. deleteInBatches(item,is){
  399. this.$confirm('你确定发放奖票?', '提示', {
  400. confirmButtonText: '确定',
  401. cancelButtonText: '取消',
  402. type: 'info'
  403. }).then(() => {
  404. let data={}
  405. if(item){
  406. data={event_ids:item.id}
  407. }else{
  408. data={event_ids:this.selectionID.toString()}
  409. }
  410. this.$axios("post", "/api/integral/ticket/create",data,'v2').then(res => {
  411. if(is){
  412. this.$message.success("已发放");
  413. this.open_detail({id:this.detail_info.event_id});
  414. this.openDetail(item);
  415. }else{
  416. this.$message.success("已发放");
  417. this.get_integral_list();
  418. }
  419. })
  420. }).catch(() => {});
  421. },
  422. getTypes() {
  423. var arr = this.$getTyps();
  424. return arr.filter(function(item) {
  425. return item.code != 'JX';
  426. });
  427. },
  428. deleteEvents(selection) {
  429. let listId = [];
  430. selection.forEach(item => {
  431. listId.push(item.id);
  432. });
  433. this.selectionID = listId;
  434. },
  435. open_detail(item) {
  436. this.detail_popup = true;
  437. let data = {
  438. event_id: item.id
  439. };
  440. this.detail_loading = true;
  441. this.$axios('get', '/api/integral/statistics/integral/info', data)
  442. .then(res => {
  443. if (res.data.code == 1) {
  444. this.detail_info = res.data.data;
  445. } else {
  446. this.$message.error(res.data.data.msg);
  447. }
  448. })
  449. .finally(() => {
  450. this.detail_loading = false;
  451. });
  452. },
  453. get_integral_list() {
  454. let data=JSON.parse(JSON.stringify(this.formData))
  455. if(this.employeeOrdept){
  456. if(this.formData.iSrecorder==1){
  457. data.recorder_id=this.$getUserData().id
  458. }
  459. }else{
  460. data.recorder_id=this.$getUserData().id
  461. }
  462. data.employee_ids=data.employee_ids.toString()
  463. this.loading = true;
  464. this.$axios('get', '/api/integral/statistics/integral',data).then(res => {
  465. this.list = res.data.data.list;
  466. if(data.page==1){
  467. this.total = res.data.data.total;
  468. }
  469. }).finally(() => {
  470. this.loading = false;
  471. });
  472. },
  473. handleCurrentChange(val) {
  474. this.formData.page = val;
  475. this.get_integral_list();
  476. },
  477. handleSizeChange(val) {
  478. this.formData.page_size =val;
  479. this.formData.page = 1;
  480. this.get_integral_list();
  481. },
  482. del_integral_event(item) {
  483. this.$confirm('删除事件的同时也会撤销积分,确定删除吗?', '提示', {
  484. confirmButtonText: '确定',
  485. cancelButtonText: '取消',
  486. type: 'warning'
  487. }).then(() => {
  488. this.$axios('post', '/api/integral/statistics/integral/destroy', { event_id: item.event_id }).then(res => {
  489. this.$message.success(res.data.msg);
  490. this.detail_popup = false;
  491. this.get_integral_list();
  492. });
  493. });
  494. },
  495. point_name(id) {
  496. let point_types=this.$getTyps();
  497. return point_types.find(item => {
  498. if (item.id == id) {
  499. return item.name;
  500. }
  501. }).name;
  502. },
  503. }
  504. };
  505. </script>
  506. <style scoped lang="scss">
  507. .message-box .label{
  508. font-size: 18px;
  509. font-weight: 600;
  510. margin-bottom: 20px;
  511. }
  512. .message-box .flex-box-ce{
  513. margin-bottom:16px ;
  514. }
  515. .message-box .fontColorC{
  516. width: 100px;
  517. }
  518. .remark {
  519. display: -webkit-box;
  520. -webkit-box-orient: vertical;
  521. -webkit-line-clamp: 2;
  522. overflow: hidden;
  523. }
  524. .title {
  525. text-align: center;
  526. font-weight: 700;
  527. max-width: 70%;
  528. margin: 20px auto;
  529. margin-top: 0;
  530. font-size: 18px;
  531. }
  532. .key {
  533. font-weight: 700;
  534. font-size: 16px;
  535. }
  536. .value {
  537. font-size: 14px;
  538. margin: 10px 0;
  539. margin-bottom: 20px;
  540. }
  541. .imgs {
  542. width: 80px;
  543. height: 80px;
  544. margin-right: 5px;
  545. margin-bottom: 5px;
  546. }
  547. header.el-drawer__header {
  548. font-size: 18px;
  549. font-family: MicrosoftYaHei;
  550. color: #303133;
  551. width: 500px;
  552. span {
  553. :focus {
  554. outline: 0;
  555. }
  556. }
  557. }
  558. .display_flex {
  559. display: flex;
  560. }
  561. .label {
  562. line-height: 36px;
  563. padding-right: 10px;
  564. }
  565. .time_section {
  566. .el-range-editor {
  567. width: 330px;
  568. }
  569. }
  570. .pagination {
  571. padding: 20px 0;
  572. }
  573. .detail_popup {
  574. padding: 20px;
  575. height: calc(100vh - 140px);
  576. overflow: auto;
  577. padding-bottom: 100px;
  578. .row_title {
  579. position: relative;
  580. margin: 0 0 20px 0;
  581. padding-top: 12px;
  582. font-size: 16px;
  583. color: #303133;
  584. line-height: 22px;
  585. }
  586. .row_title:before {
  587. position: absolute;
  588. top: 0;
  589. content: ' ';
  590. width: 100%;
  591. border-top: 1px #f8f8f8 solid;
  592. }
  593. .el-row {
  594. margin-bottom: 10px;
  595. font-size: 14px;
  596. .el-col-4 {
  597. color: #606266;
  598. }
  599. }
  600. }
  601. span.point {
  602. font-size: 16px;
  603. }
  604. .drawer_title {
  605. font-size: 18px;
  606. padding: 20px;
  607. border-bottom: 1px #efefef solid;
  608. }
  609. .row_tips {
  610. display: block;
  611. color: #909399;
  612. font-size: 12px;
  613. margin-top: 0px;
  614. }
  615. .el-range-editor--medium .el-range-separator {
  616. width: 25px;
  617. }
  618. .integral_event_box {
  619. background-color: #ffffff;
  620. padding: 20px;
  621. min-height: calc(100vh - 160px);
  622. }
  623. .examine_steps ::v-deep .el-step.is-vertical .el-step__title {
  624. padding-bottom: 0;
  625. }
  626. .diy-tip1 {
  627. margin-bottom: 10px !important;
  628. background: #f0f9eb !important;
  629. color: #67c23a !important;
  630. border: 1px solid #67c23a !important;
  631. padding: 9px !important;
  632. min-width: 800px;
  633. border-radius: 4px;
  634. }
  635. </style>