调取-勾选清单中已经存在的数据的提示语
This commit is contained in:
@@ -78,7 +78,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 保存-->
|
<!-- 保存-->
|
||||||
<div @click="preservationClick(1)" v-if="roleSwitchingCode == 2" class="operator-text">
|
<div @click="preservationClick(1)" v-if="roleSwitchingCode == 2 || roleSwitchingCode == 0" class="operator-text">
|
||||||
<a-icon type="check-circle"/>
|
<a-icon type="check-circle"/>
|
||||||
{{ $t('preservation') }}
|
{{ $t('preservation') }}
|
||||||
</div>
|
</div>
|
||||||
@@ -333,7 +333,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<span slot="reportNo" slot-scope="text,record">
|
<span slot="reportNo" slot-scope="text,record">
|
||||||
<a-input class="box-input-index"
|
<a-input class="box-input-index"
|
||||||
v-if="roleSwitchingCode == 2"
|
v-if="roleSwitchingCode == 2 || roleSwitchingCode == 0"
|
||||||
:maxLength="200"
|
:maxLength="200"
|
||||||
onkeyup="this.value=this.value.replace(/(^\s+)|(\s+$)/g, '')"
|
onkeyup="this.value=this.value.replace(/(^\s+)|(\s+$)/g, '')"
|
||||||
v-model.trim="record.reportNumber"
|
v-model.trim="record.reportNumber"
|
||||||
@@ -342,7 +342,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<span slot="productModel" slot-scope="text,record">
|
<span slot="productModel" slot-scope="text,record">
|
||||||
<a-input class="box-input-index"
|
<a-input class="box-input-index"
|
||||||
v-if="roleSwitchingCode == 2"
|
v-if="roleSwitchingCode == 2 || roleSwitchingCode == 0"
|
||||||
:maxLength="200"
|
:maxLength="200"
|
||||||
onkeyup="this.value=this.value.replace(/(^\s+)|(\s+$)/g, '')"
|
onkeyup="this.value=this.value.replace(/(^\s+)|(\s+$)/g, '')"
|
||||||
v-model.trim="record.productModel"
|
v-model.trim="record.productModel"
|
||||||
@@ -351,7 +351,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<span slot="nameOfManufacturer" slot-scope="text,record">
|
<span slot="nameOfManufacturer" slot-scope="text,record">
|
||||||
<a-input class="box-input-index"
|
<a-input class="box-input-index"
|
||||||
v-if="roleSwitchingCode == 2"
|
v-if="roleSwitchingCode == 2 || roleSwitchingCode == 0"
|
||||||
:maxLength="200"
|
:maxLength="200"
|
||||||
onkeyup="this.value=this.value.replace(/(^\s+)|(\s+$)/g, '')"
|
onkeyup="this.value=this.value.replace(/(^\s+)|(\s+$)/g, '')"
|
||||||
v-model.trim="record.productionEnterpriseName"
|
v-model.trim="record.productionEnterpriseName"
|
||||||
@@ -815,7 +815,7 @@
|
|||||||
},
|
},
|
||||||
onChange(page, pageSize) {
|
onChange(page, pageSize) {
|
||||||
this.pageNo = page
|
this.pageNo = page
|
||||||
if (this.roleSwitchingCode == 2) {
|
if (this.roleSwitchingCode == 2 || this.roleSwitchingCode == 0) {
|
||||||
this.preservationClick()
|
this.preservationClick()
|
||||||
}
|
}
|
||||||
this.getList()
|
this.getList()
|
||||||
@@ -823,7 +823,7 @@
|
|||||||
SizeChange(page, pageSize) {
|
SizeChange(page, pageSize) {
|
||||||
this.pageNo = 1
|
this.pageNo = 1
|
||||||
this.pageSize = pageSize
|
this.pageSize = pageSize
|
||||||
if (this.roleSwitchingCode == 2) {
|
if (this.roleSwitchingCode == 2 || this.roleSwitchingCode == 0) {
|
||||||
this.preservationClick()
|
this.preservationClick()
|
||||||
}
|
}
|
||||||
this.getList()
|
this.getList()
|
||||||
|
|||||||
@@ -146,7 +146,7 @@
|
|||||||
<!-- 更多-->
|
<!-- 更多-->
|
||||||
<a-popconfirm overlayClassName="popconfirm" placement="bottomRight" v-if="this.roleSwitchingCode == '0'">
|
<a-popconfirm overlayClassName="popconfirm" placement="bottomRight" v-if="this.roleSwitchingCode == '0'">
|
||||||
<template slot="title" id="popconfirm">
|
<template slot="title" id="popconfirm">
|
||||||
<div style="height:320px;overflow:scroll;overflow-x: auto;">
|
<div>
|
||||||
<!-- 添加-->
|
<!-- 添加-->
|
||||||
<div @click="handleAdd" class="operator-text-title">
|
<div @click="handleAdd" class="operator-text-title">
|
||||||
<a-icon type="plus"/>
|
<a-icon type="plus"/>
|
||||||
|
|||||||
Reference in New Issue
Block a user