[add] 参数项收集清单

This commit is contained in:
zhaomeijing
2022-05-09 10:23:01 +08:00
parent 7eaa8172f1
commit 7dd23f413b
@@ -50,6 +50,9 @@
:scroll='{x: 600}' :scroll='{x: 600}'
:rowSelection='{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}' :rowSelection='{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}'
@change='handleTableChange'> @change='handleTableChange'>
<span slot="paramsManifestClick" slot-scope="text,record">
<a @click="paramsManifestClick(record)">{{text}}</a>
</span>
<span slot="operation" slot-scope="text,record"> <span slot="operation" slot-scope="text,record">
<a class="text-operation" @click="configure(record)">{{$t('configure')}}</a> <a class="text-operation" @click="configure(record)">{{$t('configure')}}</a>
<a class="text-operation" @click="edit(record)">{{$t('edit')}}</a> <a class="text-operation" @click="edit(record)">{{$t('edit')}}</a>
@@ -98,6 +101,7 @@
title: this.$t('title'), title: this.$t('title'),
align: 'center', align: 'center',
dataIndex: 'title', dataIndex: 'title',
scopedSlots: { customRender: 'paramsManifestClick' }
}, },
{ {
title: this.$t('status'), title: this.$t('status'),
@@ -168,6 +172,12 @@
this.getlist() this.getlist()
}, },
methods:{ methods:{
paramsManifestClick(item) {
this.$router.push({
path: '/ProjectDetails',
query: item
})
},
deleteLib(val) { deleteLib(val) {
let _this = this let _this = this
this.$confirm({ this.$confirm({