commonTextTable.vue
3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<template>
<div>
<a-card title="自定义文本信息" :bordered="false">
<a-table ref="table" size="middle" bordered :columns="textData" :dataSource="objDataList" :pagination="false" :loading="loading" :rowKey="record => record.id" @change="handleTableChange">
<span slot="action" slot-scope="text, record">
<a @click="handleTextLook(record)">查看</a>
</span>
</a-table>
</a-card>
<common-text-modal ref="commonTextModal" @ok="commonTextModalOk"></common-text-modal>
</div>
</template>
<script>
import { JeecgListMixin } from '@/mixins/CoreListMixin'
import commonTextModal from './commonTextModal'
import { deleteCollCusExtObjData } from '@/api/configApi'
export default {
name: 'commonTextTable',
mixins: [JeecgListMixin],
components: {
commonTextModal
},
props: {
userType: {
type: Number,
default: null,
},
objDataList:{
type:Array,
default:()=>{
return [];
}
},
customerNo:{
type:String,
default:''
}
},
data () {
return {
title:'',
textData: [
{
title: '序号',
dataIndex: '',
key: 'rowIndex',
align: 'center',
width: 60,
customRender: function (t, r, index) {
return parseInt(index) + 1
}
},
{
title: '信息名称',
align: 'center',
dataIndex: 'name'
},
{
title: '信息内容',
align: 'center',
dataIndex: 'objectData'
},
{
title: '备注',
align: 'center',
dataIndex: 'remark'
},
{
title: '操作',
dataIndex: 'action',
scopedSlots: { customRender: 'action' },
align: 'center',
width: 150,
fixed: 'right'
}
],
disableMixinCreated:true,
}
},
created () {
console.log(this.userType)
switch(this.userType){
case 1:
this.title = '个人自定义文本信息'
break;
case 2:
this.title = '企业自定义文本信息'
break;
case 3:
this.title = '企业法人自定义文本信息'
break;
}
},
methods: {
handleAddModal (title) {
this.$refs.commonTextModal.add(this.customerNo)
this.$refs.commonTextModal.title = title ? title : '新增'
this.$refs.commonTextModal.disableSubmit = false
},
// 自定义附件信息查看
handleTextLook (record) {
this.$refs.commonTextModal.edit(record)
this.$refs.commonTextModal.title = '查看'
this.$refs.commonTextModal.disableSubmit = true
this.$refs.commonTextModal.onlyread = true
},
handleEditModal(title,record){
this.$refs.commonTextModal.edit(record)
this.$refs.commonTextModal.title = title ? title : '修改'
this.$refs.commonTextModal.disableSubmit = false
},
handleDelete(record){
console.log(record)
let _p = {'id':record.id}
deleteCollCusExtObjData(_p).then(res=>{
if (res.status.statusCode == 0) {
this.$emit('editReload');
this.$message.success(res.status.statusReason)
} else {
this.$message.warning(res.status.statusReason)
}
})
},
commonTextModalOk () {
this.$emit('editReload');
},
}
}
</script>
<style>
</style>