专利列表
This commit is contained in:
50
src/api/dataList/patent.js
Normal file
50
src/api/dataList/patent.js
Normal file
@ -0,0 +1,50 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 专利列表
|
||||
export function patentList(data) {
|
||||
return request({
|
||||
url: '/admin/v1/technology/patent',
|
||||
method: 'post',
|
||||
data,
|
||||
})
|
||||
}
|
||||
// 专利信息添加
|
||||
export function patentAdd(data) {
|
||||
return request({
|
||||
url: '/admin/v1/technology/patent/add',
|
||||
method: 'post',
|
||||
data,
|
||||
})
|
||||
}
|
||||
// 专利信息详情
|
||||
export function patentDetail(data) {
|
||||
return request({
|
||||
url: '/admin/v1/technology/patent/detail',
|
||||
method: 'post',
|
||||
data,
|
||||
})
|
||||
}
|
||||
// 专利信息修改
|
||||
export function patentEdit(data) {
|
||||
return request({
|
||||
url: '/admin/v1/technology/patent/edit',
|
||||
method: 'post',
|
||||
data,
|
||||
})
|
||||
}
|
||||
// 专利信息删除
|
||||
export function patentDelete(data) {
|
||||
return request({
|
||||
url: '/admin/v1/technology/patent/delete',
|
||||
method: 'post',
|
||||
data,
|
||||
})
|
||||
}
|
||||
// 专利上下架
|
||||
export function patentShelf(data) {
|
||||
return request({
|
||||
url: '/admin/v1/technology/patent/shelf',
|
||||
method: 'post',
|
||||
data,
|
||||
})
|
||||
}
|
@ -2,91 +2,92 @@
|
||||
|
||||
.el-breadcrumb__inner,
|
||||
.el-breadcrumb__inner a {
|
||||
font-weight: 400 !important;
|
||||
font-weight: 400 !important;
|
||||
}
|
||||
|
||||
.el-upload {
|
||||
input[type="file"] {
|
||||
display: none !important;
|
||||
}
|
||||
input[type='file'] {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.el-upload__input {
|
||||
display: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cell {
|
||||
.el-tag {
|
||||
margin-right: 0px;
|
||||
}
|
||||
.el-tag {
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
.small-padding {
|
||||
.cell {
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
.cell {
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.fixed-width {
|
||||
.el-button--mini {
|
||||
padding: 7px 10px;
|
||||
width: 60px;
|
||||
}
|
||||
.el-button--mini {
|
||||
padding: 7px 10px;
|
||||
width: 60px;
|
||||
}
|
||||
}
|
||||
|
||||
.status-col {
|
||||
.cell {
|
||||
padding: 0 10px;
|
||||
text-align: center;
|
||||
.cell {
|
||||
padding: 0 10px;
|
||||
text-align: center;
|
||||
|
||||
.el-tag {
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
.el-tag {
|
||||
margin-right: 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// to fixed https://github.com/ElemeFE/element/issues/2461
|
||||
.el-dialog {
|
||||
transform: none;
|
||||
left: 0;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
transform: none;
|
||||
left: 0;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
// refine element ui upload
|
||||
.upload-container {
|
||||
.el-upload {
|
||||
width: 100%;
|
||||
.el-upload {
|
||||
width: 100%;
|
||||
|
||||
.el-upload-dragger {
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
}
|
||||
}
|
||||
.el-upload-dragger {
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// dropdown
|
||||
.el-dropdown-menu {
|
||||
a {
|
||||
display: block
|
||||
}
|
||||
a {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
// fix date-picker ui bug in filter-item
|
||||
.el-range-editor.el-input__inner {
|
||||
display: inline-flex !important;
|
||||
display: inline-flex !important;
|
||||
}
|
||||
|
||||
// to fix el-date-picker css style
|
||||
.el-range-separator {
|
||||
box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
.el-menu--collapse
|
||||
> div
|
||||
> .el-submenu
|
||||
> .el-submenu__title
|
||||
.el-submenu__icon-arrow {
|
||||
display: none;
|
||||
}
|
||||
.el-menu--collapse > div > .el-submenu > .el-submenu__title .el-submenu__icon-arrow {
|
||||
display: none;
|
||||
}
|
||||
input,
|
||||
textarea {
|
||||
font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial,
|
||||
sans-serif;
|
||||
}
|
||||
|
@ -20,7 +20,7 @@ import './permission' // permission control
|
||||
import { getDicts } from '@/api/system/dict/data'
|
||||
import { getConfigKey } from '@/api/system/config'
|
||||
import { parseTime, resetForm, addDateRange, selectDictLabel, selectDictLabels, handleTree } from '@/utils/ruoyi'
|
||||
import { modeOptions, educationOptions, enterpriseOptions } from '@/utils/parameter'
|
||||
import { modeOptions, educationOptions, enterpriseOptions, patentOptions } from '@/utils/parameter'
|
||||
// 分页组件
|
||||
import Pagination from '@/components/Pagination'
|
||||
// 自定义表格工具组件
|
||||
@ -56,6 +56,7 @@ Vue.prototype.md5 = md5
|
||||
Vue.prototype.modeOptions = modeOptions
|
||||
Vue.prototype.educationOptions = educationOptions
|
||||
Vue.prototype.enterpriseOptions = enterpriseOptions
|
||||
Vue.prototype.patentOptions = patentOptions
|
||||
|
||||
// 全局组件挂载
|
||||
Vue.component('DictTag', DictTag)
|
||||
|
@ -33,3 +33,9 @@ export const enterpriseOptions = [
|
||||
{ key: 102, value: '优质企业' },
|
||||
{ key: 103, value: '普通企业' },
|
||||
]
|
||||
// 专利类型
|
||||
export const patentOptions = [
|
||||
{ key: 1, value: '发明专利' },
|
||||
{ key: 2, value: '外观设计' },
|
||||
{ key: 3, value: '实用新型' },
|
||||
]
|
||||
|
488
src/views/dataList/patent/index.vue
Normal file
488
src/views/dataList/patent/index.vue
Normal file
@ -0,0 +1,488 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form
|
||||
:model="queryParams"
|
||||
ref="queryForm"
|
||||
v-show="showSearch"
|
||||
:inline="true"
|
||||
@submit.native.prevent
|
||||
>
|
||||
<el-form-item label="专利名称" prop="title">
|
||||
<el-input
|
||||
v-model="queryParams.title"
|
||||
placeholder="请输入专利名称"
|
||||
clearable
|
||||
size="small"
|
||||
style="width: 240px"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-search"
|
||||
size="mini"
|
||||
@click="handleQuery"
|
||||
>搜索</el-button
|
||||
>
|
||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
|
||||
>重置</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="el-icon-plus"
|
||||
size="mini"
|
||||
@click="handleAdd"
|
||||
>新增</el-button
|
||||
>
|
||||
</el-col>
|
||||
<!-- <el-col :span="1.5">
|
||||
<el-button
|
||||
type="primary"
|
||||
plain
|
||||
icon="el-icon-plus"
|
||||
size="mini"
|
||||
@click="openDialog = true"
|
||||
>认领</el-button
|
||||
>
|
||||
</el-col> -->
|
||||
<right-toolbar
|
||||
:showSearch.sync="showSearch"
|
||||
@queryTable="getList"
|
||||
></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="dataList">
|
||||
<el-table-column label="数据编号" prop="id" align="center" />
|
||||
<el-table-column label="专利名称" prop="title" align="center" />
|
||||
<el-table-column label="申请号" prop="apply_code" align="center" />
|
||||
<el-table-column label="发明人" prop="inventor" align="center" />
|
||||
<el-table-column
|
||||
label="申请(专利权)人"
|
||||
prop="apply_name"
|
||||
align="center"
|
||||
/>
|
||||
<!-- <el-table-column label="状态" align="center">
|
||||
<template slot-scope="scope">
|
||||
<el-switch
|
||||
v-model="scope.row.shelf_status"
|
||||
:active-value="1"
|
||||
:inactive-value="2"
|
||||
@change="handleStatusChange(scope.row)"
|
||||
></el-switch>
|
||||
</template>
|
||||
</el-table-column> -->
|
||||
<el-table-column label="申请日期" prop="apply_at" align="center">
|
||||
<!-- <template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.apply_at) }}</span>
|
||||
</template> -->
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="操作"
|
||||
align="center"
|
||||
class-name="small-padding fixed-width"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-edit"
|
||||
@click="handleUpdate(scope.row)"
|
||||
>编辑</el-button
|
||||
>
|
||||
<el-button
|
||||
size="mini"
|
||||
type="text"
|
||||
icon="el-icon-delete"
|
||||
@click="handleDelete(scope.row)"
|
||||
>删除</el-button
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
:page.sync="queryParams.page_num"
|
||||
:limit.sync="queryParams.page_size"
|
||||
@pagination="getList"
|
||||
/>
|
||||
<!-- 添加或修改对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="700px">
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
||||
<el-form-item label="申请人:" prop="apply_name">
|
||||
<el-input
|
||||
v-model="form.apply_name"
|
||||
placeholder="请输入申请(专利权)人"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="申请人地址:" prop="apply_address">
|
||||
<el-input
|
||||
v-model="form.apply_address"
|
||||
placeholder="请输入申请人地址"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="发明人:" prop="inventor">
|
||||
<el-input v-model="form.inventor" placeholder="请输入发明人" />
|
||||
<!-- (多个请以 ; 隔开) -->
|
||||
</el-form-item>
|
||||
<el-form-item label="专利名称:" prop="title">
|
||||
<el-input v-model="form.title" placeholder="请输入专利名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="申请号:" prop="apply_code">
|
||||
<el-input v-model="form.apply_code" placeholder="请输入申请号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="公开号:" prop="open_code">
|
||||
<el-input v-model="form.open_code" placeholder="请输入公开号" />
|
||||
</el-form-item>
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="申请日期:" prop="apply_at">
|
||||
<el-date-picker
|
||||
value-format="yyyyMMdd"
|
||||
v-model.trim="form.apply_at"
|
||||
type="date"
|
||||
placeholder="请选择申请日期"
|
||||
>
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="公开日:" prop="open_at">
|
||||
<el-date-picker
|
||||
style="width: 100%"
|
||||
value-format="yyyyMMdd"
|
||||
v-model.trim="form.open_at"
|
||||
type="date"
|
||||
placeholder="请选择公开日"
|
||||
>
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="专利类型:" prop="kind">
|
||||
<el-select v-model="form.kind" clearable placeholder="请选择">
|
||||
<el-option
|
||||
v-for="item in patentOptions"
|
||||
:key="item.key"
|
||||
:label="item.value"
|
||||
:value="item.key"
|
||||
>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="IPC分类号:" prop="ipc_code">
|
||||
<el-input v-model="form.ipc_code" placeholder="请输入IPC分类号" />
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="状态:" prop="shelf_status">
|
||||
<el-radio-group v-model="form.shelf_status">
|
||||
<el-radio :label="1">上架</el-radio>
|
||||
<el-radio :label="2">下架</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item> -->
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<el-form-item label="摘要:" prop="description">
|
||||
<!-- <Editor v-model="form.description" :minHeight="150" /> -->
|
||||
<el-input
|
||||
v-model.number="form.description"
|
||||
placeholder="请输入摘要"
|
||||
type="textarea"
|
||||
:autosize="{ minRows: 4, maxRows: 8 }"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="主权项:" prop="principal_claim">
|
||||
<!-- <Editor v-model="form.principal_claim" :minHeight="150" /> -->
|
||||
<el-input
|
||||
v-model.number="form.principal_claim"
|
||||
placeholder="请输入主权项"
|
||||
type="textarea"
|
||||
:autosize="{ minRows: 4, maxRows: 8 }"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
<!-- 认领专利 -->
|
||||
<!-- <el-dialog title="认领专利" :visible.sync="openDialog" width="900px">
|
||||
<el-form :model="claimQueryParams" ref="formClaim" :inline="true">
|
||||
<el-form-item label="申请(专利权)人" prop="apply_name">
|
||||
<el-input
|
||||
v-model.trim="claimQueryParams.apply_name"
|
||||
placeholder="请输入申请(专利权)人"
|
||||
clearable
|
||||
size="small"
|
||||
style="width: 240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="发明人" prop="inventor">
|
||||
<el-input
|
||||
v-model.trim="claimQueryParams.inventor"
|
||||
placeholder="请输入发明人"
|
||||
clearable
|
||||
size="small"
|
||||
style="width: 240px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-search"
|
||||
size="mini"
|
||||
@click="handleQueryClaim"
|
||||
>搜索</el-button
|
||||
>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<el-table
|
||||
v-loading="claimLoading"
|
||||
max-height="500"
|
||||
ref="claimTable"
|
||||
:data="claimList"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="数据编号" prop="id" align="center" />
|
||||
<el-table-column label="申请人" prop="apply_name" align="center" />
|
||||
<el-table-column label="发明人" prop="inventor" align="center" />
|
||||
<el-table-column label="申请日期" prop="apply_at" align="center" />
|
||||
<el-table-column label="专利名称" prop="title" align="center" />
|
||||
</el-table>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitClaimForm">确 定</el-button>
|
||||
<el-button @click="openDialog = false">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog> -->
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import {
|
||||
patentList,
|
||||
patentAdd,
|
||||
patentDetail,
|
||||
patentEdit,
|
||||
patentDelete,
|
||||
patentShelf,
|
||||
} from "@/api/dataList/patent";
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
loading: true,
|
||||
showSearch: true,
|
||||
queryParams: {
|
||||
title: undefined,
|
||||
page_num: 1,
|
||||
page_size: 10,
|
||||
},
|
||||
total: 0,
|
||||
dataList: [],
|
||||
// 弹出层标题
|
||||
title: "",
|
||||
// 是否显示弹出层
|
||||
open: false,
|
||||
// 表单参数
|
||||
form: {},
|
||||
rules: {
|
||||
apply_name: [
|
||||
{ required: true, message: "申请人不能为空", trigger: "blur" },
|
||||
],
|
||||
apply_address: [
|
||||
{ required: true, message: "申请人地址不能为空", trigger: "blur" },
|
||||
],
|
||||
open_code: [
|
||||
{ required: true, message: "公开号不能为空", trigger: "blur" },
|
||||
],
|
||||
open_at: [
|
||||
{ required: true, message: "公开日不能为空", trigger: "blur" },
|
||||
],
|
||||
inventor: [
|
||||
{ required: true, message: "发明人不能为空", trigger: "blur" },
|
||||
],
|
||||
title: [
|
||||
{ required: true, message: "专利名称不能为空", trigger: "blur" },
|
||||
],
|
||||
apply_code: [
|
||||
{ required: true, message: "申请号不能为空", trigger: "blur" },
|
||||
],
|
||||
apply_at: [
|
||||
{ required: true, message: "申请日期不能为空", trigger: "blur" },
|
||||
],
|
||||
kind: [
|
||||
{ required: true, message: "请选择专利类型", trigger: "change" },
|
||||
],
|
||||
ipc_code: [
|
||||
{ required: true, message: "IPC分类号不能为空", trigger: "blur" },
|
||||
],
|
||||
description: [
|
||||
{ required: true, message: "摘要不能为空", trigger: "blur" },
|
||||
],
|
||||
principal_claim: [
|
||||
{ required: true, message: "主权项不能为空", trigger: "blur" },
|
||||
],
|
||||
},
|
||||
openDialog: false,
|
||||
claimLoading: false,
|
||||
claimQueryParams: {
|
||||
apply_name: "",
|
||||
inventor: "",
|
||||
page_num: 1,
|
||||
page_size: 100,
|
||||
},
|
||||
claimList: [],
|
||||
ids: [],
|
||||
formClaim: {},
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
resetQuery() {
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
handleQuery() {
|
||||
this.queryParams.page_num = 1;
|
||||
this.getList();
|
||||
},
|
||||
// 查找专利条件... 不用了
|
||||
handleQueryClaim() {
|
||||
if (!this.claimQueryParams.apply_name.length)
|
||||
return this.$modal.msgError("请输入申请(专利权)人");
|
||||
if (!this.claimQueryParams.inventor.length)
|
||||
return this.$modal.msgError("请输入发明人");
|
||||
this.claimQueryParams.page_num = 1;
|
||||
this.getClaimList();
|
||||
},
|
||||
// 查找专利... 不用了
|
||||
getClaimList() {
|
||||
this.claimLoading = true;
|
||||
// patentList 临时方法 需修改... 不用了
|
||||
patentList(this.claimQueryParams).then((res) => {
|
||||
this.claimList = res.data.data;
|
||||
this.claimLoading = false;
|
||||
this.claimList.forEach((item) => {
|
||||
if (item.id == "XN0wBrbAZwQl") {
|
||||
this.$nextTick(() => {
|
||||
this.$refs.claimTable.toggleRowSelection(item);
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
},
|
||||
// 多选框选中数据
|
||||
handleSelectionChange(selection) {
|
||||
this.ids = selection.map((item) => item.id);
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
patentList(this.queryParams).then((res) => {
|
||||
this.dataList = res.data.data;
|
||||
this.total = res.data.count;
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
this.open = false;
|
||||
this.reset();
|
||||
},
|
||||
// 表单重置
|
||||
reset() {
|
||||
this.form = {
|
||||
id: undefined,
|
||||
apply_name: undefined,
|
||||
apply_address: undefined,
|
||||
inventor: undefined,
|
||||
title: undefined,
|
||||
apply_code: undefined,
|
||||
open_code: undefined,
|
||||
open_at: undefined,
|
||||
apply_at: undefined,
|
||||
kind: undefined,
|
||||
ipc_code: undefined,
|
||||
description: undefined,
|
||||
// shelf_status: 1,
|
||||
principal_claim: undefined,
|
||||
};
|
||||
this.resetForm("form");
|
||||
},
|
||||
handleAdd() {
|
||||
this.reset();
|
||||
this.open = true;
|
||||
this.title = "新增专利";
|
||||
},
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
patentDetail({ id: row.id }).then((res) => {
|
||||
this.form = res.data;
|
||||
this.open = true;
|
||||
this.title = "修改专利";
|
||||
});
|
||||
},
|
||||
submitClaimForm() {},
|
||||
// 状态修改
|
||||
// handleStatusChange(row) {
|
||||
// let text = row.shelf_status === 1 ? "启用" : "停用";
|
||||
// this.$modal
|
||||
// .confirm('确认要"' + text + '""' + row.id + '"数据吗?')
|
||||
// .then(function () {
|
||||
// return patentShelf({ id: row.id });
|
||||
// })
|
||||
// .then(() => {
|
||||
// this.$modal.msgSuccess(text + "成功");
|
||||
// })
|
||||
// .catch(function () {
|
||||
// row.shelf_status = row.shelf_status === 1 ? 2 : 1;
|
||||
// });
|
||||
// },
|
||||
submitForm() {
|
||||
this.$refs["form"].validate((valid) => {
|
||||
if (valid) {
|
||||
// this.form.inventor = this.form.inventor.replace(/;/g, ";");
|
||||
if (this.form.id != undefined) {
|
||||
patentEdit(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("修改成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
} else {
|
||||
patentAdd(this.form).then((response) => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
this.getList();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
this.$modal
|
||||
.confirm('是否确认删除编号为"' + row.id + '"的数据项?')
|
||||
.then(function () {
|
||||
return patentDelete({ id: row.id });
|
||||
})
|
||||
.then(() => {
|
||||
this.getList();
|
||||
this.$modal.msgSuccess("删除成功");
|
||||
})
|
||||
.catch(() => {});
|
||||
},
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
};
|
||||
</script>
|
Reference in New Issue
Block a user