943ebf77 by renchao@pashanhoo.com

style:受理信息模块功能的完善

1 parent d316a1a0
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
47 47
48 .el-dialog__header { 48 .el-dialog__header {
49 margin-bottom: 10px; 49 margin-bottom: 10px;
50 color: #4A4A4A; 50 color: #FFFFFF;
51 background-color: #FCFDFD; 51 background-color: #FCFDFD;
52 border-bottom: 1px solid #E4EBF4; 52 border-bottom: 1px solid #E4EBF4;
53 } 53 }
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
3 </lb-table> 3 </lb-table>
4 </template> 4 </template>
5 <script> 5 <script>
6 import addQlr from './addQlr.vue' 6 import addQlr from './dialog/addQlr.vue'
7 import { mapGetters } from 'vuex' 7 import { mapGetters } from 'vuex'
8 export default { 8 export default {
9 components: { 9 components: {
......
1 <template> 1 <template>
2 <div> 2 <div>
3 <lb-table :column="column" :maxHeight="300" heightNumSetting :pagination="false" :key="key" :data="tableDataList"> 3 <lb-table :column="column" :pagination="false" :key="key" :data="tableDataList">
4 </lb-table> 4 </lb-table>
5 <addQlr v-model="dialog" :details="details" :showButton="showButton" @updateDetail="handleupdateDetail" /> 5 <addQlr v-model="dialog" :details="details" :showButton="showButton" @updateDetail="handleupdateDetail" />
6 </div> 6 </div>
7 </template> 7 </template>
8 <script> 8 <script>
9 import addQlr from './addQlr.vue' 9 import addQlr from './dialog/addQlr.vue'
10 import { mapGetters } from 'vuex' 10 import { mapGetters } from 'vuex'
11 export default { 11 export default {
12 components: { 12 components: {
13 addQlr 13 addQlr
14 }, 14 },
...@@ -162,13 +162,13 @@ export default { ...@@ -162,13 +162,13 @@ export default {
162 this.$emit('upDateQlrxxList', this.tableDataList) 162 this.$emit('upDateQlrxxList', this.tableDataList)
163 } 163 }
164 } 164 }
165 this.key++
165 }, 166 },
166
167 // 新增 167 // 新增
168 addClick () { 168 addClick () {
169 if(this.gyfs == '0' && this.tableDataList.length > 0){ 169 if (this.gyfs == '0' && this.tableDataList.length > 0) {
170 this.$message.warning("当前共有方式为单独所有,无法添加多个权利人") 170 this.$message.warning("当前共有方式为单独所有,无法添加多个权利人")
171 }else{ 171 } else {
172 this.dialog = true 172 this.dialog = true
173 this.isaddupdate = true 173 this.isaddupdate = true
174 } 174 }
...@@ -211,8 +211,5 @@ export default { ...@@ -211,8 +211,5 @@ export default {
211 this.details = row 211 this.details = row
212 } 212 }
213 } 213 }
214 } 214 }
215 </script> 215 </script>
216 <style scoped lang='scss'>
217
218 </style>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
3 </lb-table> 3 </lb-table>
4 </template> 4 </template>
5 <script> 5 <script>
6 import addQlr from './addQlr.vue' 6 import addQlr from './dialog/addQlr.vue'
7 import { mapGetters } from 'vuex' 7 import { mapGetters } from 'vuex'
8 export default { 8 export default {
9 components: { 9 components: {
......