943ebf77 by renchao@pashanhoo.com

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

1 parent d316a1a0
......@@ -47,7 +47,7 @@
.el-dialog__header {
margin-bottom: 10px;
color: #4A4A4A;
color: #FFFFFF;
background-color: #FCFDFD;
border-bottom: 1px solid #E4EBF4;
}
......
......@@ -3,7 +3,7 @@
</lb-table>
</template>
<script>
import addQlr from './addQlr.vue'
import addQlr from './dialog/addQlr.vue'
import { mapGetters } from 'vuex'
export default {
components: {
......
<template>
<div>
<lb-table :column="column" :maxHeight="300" heightNumSetting :pagination="false" :key="key" :data="tableDataList">
<lb-table :column="column" :pagination="false" :key="key" :data="tableDataList">
</lb-table>
<addQlr v-model="dialog" :details="details" :showButton="showButton" @updateDetail="handleupdateDetail" />
</div>
</template>
<script>
import addQlr from './addQlr.vue'
import { mapGetters } from 'vuex'
export default {
import addQlr from './dialog/addQlr.vue'
import { mapGetters } from 'vuex'
export default {
components: {
addQlr
},
......@@ -162,13 +162,13 @@ export default {
this.$emit('upDateQlrxxList', this.tableDataList)
}
}
this.key++
},
// 新增
addClick () {
if(this.gyfs == '0' && this.tableDataList.length > 0){
if (this.gyfs == '0' && this.tableDataList.length > 0) {
this.$message.warning("当前共有方式为单独所有,无法添加多个权利人")
}else{
} else {
this.dialog = true
this.isaddupdate = true
}
......@@ -211,8 +211,5 @@ export default {
this.details = row
}
}
}
}
</script>
<style scoped lang='scss'>
</style>
......
......@@ -3,7 +3,7 @@
</lb-table>
</template>
<script>
import addQlr from './addQlr.vue'
import addQlr from './dialog/addQlr.vue'
import { mapGetters } from 'vuex'
export default {
components: {
......