认证清单增加”认证类型“字段

This commit is contained in:
范强强
2023-04-17 16:30:54 +08:00
parent a394849119
commit a05015e730
@@ -137,7 +137,7 @@
{{ $t('modifyOperator') }}
</div>
<!-- 复制-->
<div @click="copyClick" v-if="this.roleSwitchingCode == '1'"
<div @click="copyClick('lawsInventoryRegulationOwnerCopy')" v-if="this.roleSwitchingCode == '1'"
class="operator-text">
<a-icon type="copy"/>
{{ $t('copy') }}
@@ -183,7 +183,7 @@
{{ $t('add') }}
</div>
<!-- 复制-->
<div @click="copyClick" class="operator-text-title">
<div @click="copyClick('lawsInventoryStudioCopy')" class="operator-text-title">
<a-icon type="copy"/>
{{ $t('copy') }}
</div>
@@ -1686,14 +1686,14 @@
downloadFile(this.url.exportData, this.$route.query.projectName + '.zip', query, this.Deselect)
},
//复制
copyClick() {
copyClick(operateType) {
if (this.selectedRowKeys.length > 0) {
let _this = this
this.$confirm({
content: _this.$t('ConfirmReplication'),
onOk() {
let idList = JSON.parse(JSON.stringify(_this.selectedRowKeys))
getAction(_this.url.copyUrl, { ids: idList.join(',') }).then((res) => {
getAction(_this.url.copyUrl, { ids: idList.join(','),operateType:operateType }).then((res) => {
if (res.success) {
_this.$message.success(_this.$t('OperationSuccessful'))
_this.selectedRowKeys = []