794f43d5 by xiaomiao

Merge branch 'dev' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web into dev

2 parents 8d51fe0b e5118d7f
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-23 15:07:51 4 * @LastEditTime: 2023-08-28 09:56:03
5 --> 5 -->
6 <template> 6 <template>
7 <div class="from-clues"> 7 <div class="from-clues">
...@@ -349,4 +349,16 @@ ...@@ -349,4 +349,16 @@
349 </script> 349 </script>
350 <style scoped lang="scss"> 350 <style scoped lang="scss">
351 @import "~@/styles/public.scss"; 351 @import "~@/styles/public.scss";
352 /deep/ .back{
353 display: inline-block;
354 font-size: 14px;
355 width: 20px;
356 height: 20px;
357 border-radius: 10px;
358 line-height: 20px;
359 margin-right: 4px;
360 text-align: center;
361 background-color: rgba(171,12,12,0.1);
362 color: #B44747;
363 }
352 </style> 364 </style>
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-23 15:06:21 4 * @LastEditTime: 2023-08-28 09:01:00
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -48,7 +48,14 @@ class data extends filter { ...@@ -48,7 +48,14 @@ class data extends filter {
48 { 48 {
49 prop: "zbhj", 49 prop: "zbhj",
50 label: "在办环节", 50 label: "在办环节",
51 width: '80' 51 width: '80',
52 render: (h, scope) => {
53 if (scope.row.stepnum > 1) {
54 return <span><span class="back">退</span>{scope.row.zbhj}</span>
55 }else{
56 return <span>{scope.row.zbhj}</span>
57 }
58 }
52 }, 59 },
53 { 60 {
54 label: '业务号', 61 label: '业务号',
......