|
|
@@ -119,7 +119,7 @@
|
|
|
<!-- 高级查询区域 -->
|
|
|
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
|
<a-menu slot="overlay">
|
|
|
- <a-menu-item key="1" @click="showImproveAndUploadList" v-has="'access:check:list:delete'">
|
|
|
+ <a-menu-item key="1" @click="showImproveAndUploadList" v-has="'access:check:lists:up'">
|
|
|
<a-icon type="up"/>
|
|
|
上传
|
|
|
</a-menu-item>
|
|
|
@@ -718,10 +718,18 @@ export default {
|
|
|
showImproveAndUpload(record) {
|
|
|
if (!record.createTime.match(RegExp(this.getDate()))){
|
|
|
return this.$message.warning('非天创建 禁止修改', 3);
|
|
|
-
|
|
|
}
|
|
|
+ //校验
|
|
|
+ let data = {
|
|
|
+ ids: [record.id],
|
|
|
+ }
|
|
|
+ postAction("/businessReminderCard/check",{ids: data.ids} ).then((res) => {
|
|
|
+ if (!res.success) {
|
|
|
+ return this.$message.warning(res.message, 3);
|
|
|
+ }
|
|
|
+ this.$router.push({path: '/networkAccess/registrationUpdate', query: {id: record.id,cardNo: record.cardNo}});
|
|
|
+ })
|
|
|
|
|
|
- this.$router.push({path: '/networkAccess/registrationUpdate', query: {id: record.id,cardNo: record.cardNo}});
|
|
|
},
|
|
|
showImproveAndUploadAdmin(record) {
|
|
|
if (record.status==='1'){
|