7cd220ab by renchao@pashanhoo.com

style:业务申请规则编辑弹窗功能的完善

1 parent 418dbf08
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-19 14:11:05 4 * @LastEditTime: 2023-07-24 09:47:54
5 --> 5 -->
6 <template> 6 <template>
7 <div> 7 <div>
...@@ -364,7 +364,12 @@ ...@@ -364,7 +364,12 @@
364 height: 75vh; 364 height: 75vh;
365 overflow-y: scroll; 365 overflow-y: scroll;
366 } 366 }
367 367 /deep/.el-radio__label {
368 display: inline-block !important;
369 }
370 /deep/.el-radio {
371 margin-right: 5px;
372 }
368 .el-radio-group { 373 .el-radio-group {
369 white-space: nowrap; 374 white-space: nowrap;
370 } 375 }
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-05-24 15:31:00 4 * @LastEditTime: 2023-07-24 09:39:34
5 --> 5 -->
6 <template> 6 <template>
7 <div class="container"> 7 <div class="container">
...@@ -159,7 +159,12 @@ ...@@ -159,7 +159,12 @@
159 //获取单元对应的所有表单信息 159 //获取单元对应的所有表单信息
160 this.tabList = res.result; 160 this.tabList = res.result;
161 //默认加载第一个表单信息 161 //默认加载第一个表单信息
162 this.tabName = res.result[0].value; 162 let arr = res.result.filter(item => item.defaultForm)
163 if (arr.length > 0) {
164 this.tabName = arr[0].value;
165 } else {
166 this.tabName = res.result[0].value;
167 }
163 this.ableOperation = this.tabList[0].ableOperation 168 this.ableOperation = this.tabList[0].ableOperation
164 //批量操作无分屏按钮 169 //批量操作无分屏按钮
165 if (index != null) { 170 if (index != null) {
......