4 changed files with 780 additions and 146 deletions
-
17src/api/warehouse/location.js
-
13src/api/warehouse/stagingCode.js
-
303src/views/modules/warehouse/location.vue
-
593src/views/modules/warehouse/stagingCode.vue
@ -0,0 +1,17 @@ |
|||||
|
import { createAPI } from "@/utils/httpRequest.js"; |
||||
|
|
||||
|
//新增
|
||||
|
export const saveLocation= data => createAPI(`/location/info/append`,'post',data) |
||||
|
|
||||
|
//查询
|
||||
|
export const findLocation= data => createAPI(`/location/info/findAll`,'post',data) |
||||
|
export const findByWarehouse= data => createAPI(`/warehouse/info/findAll`,'post',data)//查询仓库信息
|
||||
|
|
||||
|
|
||||
|
//修改
|
||||
|
export const updateLocation= data => createAPI(`/location/info/amend`,'post',data) |
||||
|
|
||||
|
//删除
|
||||
|
export const deleteLocation= data => createAPI(`/location/info/deleteById`,'post',data) |
||||
|
|
||||
|
|
||||
@ -0,0 +1,13 @@ |
|||||
|
import { createAPI } from "@/utils/httpRequest.js"; |
||||
|
|
||||
|
//新增
|
||||
|
export const saveStagingCode= data => createAPI(`/stag/code/append`,'post',data) |
||||
|
|
||||
|
//查询
|
||||
|
export const findStagingCode= data => createAPI(`stag/code/findAll`,'post',data) |
||||
|
|
||||
|
//修改
|
||||
|
export const updateStagingCode= data => createAPI(`stag/code/amend`,'post',data) |
||||
|
|
||||
|
//删除
|
||||
|
export const deleteStagingCode= data => createAPI(`/stag/code/deleteById`,'post',data) |
||||
@ -0,0 +1,593 @@ |
|||||
|
<template> |
||||
|
<div class="mod-config"> |
||||
|
|
||||
|
<!-- 条件查询 --> |
||||
|
<el-form :inline="true" label-position="top" :model="searchData" @keyup.enter.native="getDataList()"> |
||||
|
<el-form-item :label="'阶段代码:'"> |
||||
|
<el-input v-model="searchData.phaseCode" clearable style="width: 120px"></el-input> |
||||
|
</el-form-item> |
||||
|
<el-form-item :label="'阶段描述:'"> |
||||
|
<el-input v-model="searchData.phaseDescription" clearable style="width: 120px"></el-input> |
||||
|
</el-form-item> |
||||
|
<el-form-item :label="'阶段描述:'"> |
||||
|
<el-input v-model="searchData.identificationCode" clearable style="width: 120px"></el-input> |
||||
|
</el-form-item> |
||||
|
|
||||
|
|
||||
|
<el-form-item :label="' '"> |
||||
|
<el-button v-if="!authSearch" type="primary" @click="getDataList()">查询</el-button> |
||||
|
<el-button v-if="!authSave" type="primary" @click="addModal()">新增</el-button> |
||||
|
<download-excel |
||||
|
:fields="fields()" |
||||
|
:data="exportData" |
||||
|
type="xls" |
||||
|
:name="exportName" |
||||
|
:header="exportHeader" |
||||
|
:footer="exportFooter" |
||||
|
:fetch="createExportData" |
||||
|
:before-generate="startDownload" |
||||
|
:before-finish="finishDownload" |
||||
|
worksheet="导出信息" |
||||
|
class="el-button el-button--primary el-button--medium"> |
||||
|
{{ "导出" }} |
||||
|
</download-excel> |
||||
|
</el-form-item> |
||||
|
</el-form> |
||||
|
|
||||
|
<!-- 展示列表 --> |
||||
|
<el-table |
||||
|
:height="height" |
||||
|
:data="dataList" |
||||
|
border |
||||
|
style="width: 100%;"> |
||||
|
<el-table-column |
||||
|
v-for="(item,index) in columnList" :key="index" |
||||
|
:sortable="item.columnSortable" |
||||
|
:prop="item.columnProp" |
||||
|
:header-align="item.headerAlign" |
||||
|
:show-overflow-tooltip="item.showOverflowTooltip" |
||||
|
:align="item.align" |
||||
|
:fixed="item.fixed==''?false:item.fixed" |
||||
|
:width="item.columnWidth" |
||||
|
:label="item.columnLabel"> |
||||
|
<template slot-scope="scope"> |
||||
|
<span v-if="!item.columnHidden"> {{ scope.row[item.columnProp] }}</span> |
||||
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
<el-table-column |
||||
|
fixed="right" |
||||
|
header-align="center" |
||||
|
align="center" |
||||
|
width="160" |
||||
|
label="操作"> |
||||
|
<template slot-scope="scope"> |
||||
|
<a type="text" size="small" @click="updateModal(scope.row)">修改</a> |
||||
|
<a type="text" size="small" @click="deleteModal(scope.row)">删除</a> |
||||
|
</template> |
||||
|
</el-table-column> |
||||
|
</el-table> |
||||
|
|
||||
|
<el-pagination |
||||
|
@size-change="sizeChangeHandle" |
||||
|
@current-change="currentChangeHandle" |
||||
|
:current-page="pageIndex" |
||||
|
:page-sizes="[20, 50, 100, 200, 500]" |
||||
|
:page-size="pageSize" |
||||
|
:total="totalPage" |
||||
|
layout="total, sizes, prev, pager, next, jumper"> |
||||
|
</el-pagination> |
||||
|
|
||||
|
<!-- 新增和修改 --> |
||||
|
<el-dialog title="检验方法" :close-on-click-modal="false" v-drag :visible.sync="modalFlag" width="500px"> |
||||
|
<el-form :inline="true" label-position="top" :model="modalData" :rules="rules" style="margin-left: 7px;margin-top: -5px;"> |
||||
|
<el-form-item label="阶段代码:" prop="site" > |
||||
|
<el-input v-model="modalData.phaseCode" style="width: 221px"></el-input> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="阶段描述:" prop="locationId" > |
||||
|
<el-input v-model="modalData.phaseDescription" style="width: 221px"></el-input> |
||||
|
</el-form-item> |
||||
|
<el-form-item label="标识码:" prop="locationName" > |
||||
|
<el-input v-model="modalData.identificationCode" style="width: 221px"></el-input> |
||||
|
</el-form-item> |
||||
|
|
||||
|
</el-form> |
||||
|
|
||||
|
<el-footer style="height:40px;margin-top: 20px;text-align:center"> |
||||
|
<el-button type="primary" @click="saveData()">保存</el-button> |
||||
|
<el-button type="primary" @click="modalFlag = false">关闭</el-button> |
||||
|
</el-footer> |
||||
|
</el-dialog> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import { |
||||
|
findStagingCode, // 检验方法查询 |
||||
|
saveStagingCode, // 检验方法新增 |
||||
|
updateStagingCode, // 检验方法修改 |
||||
|
deleteStagingCode, // 检验方法删除 |
||||
|
// inspectionTypeSearch, // 搜索所有检验类型 |
||||
|
// // getSiteAndBuByUserName |
||||
|
} from "@/api/warehouse/stagingCode.js" |
||||
|
export default { |
||||
|
data () { |
||||
|
return { |
||||
|
// 是否收藏 |
||||
|
favorite: false, |
||||
|
// 导出 start |
||||
|
exportData: [], |
||||
|
exportName: "检验方法" + this.dayjs().format('YYYYMMDDHHmmss'), |
||||
|
exportHeader: ["检验方法"], |
||||
|
exportFooter: [], |
||||
|
exportList: [], |
||||
|
warehouseData: { |
||||
|
id:'', |
||||
|
site: '', |
||||
|
}, |
||||
|
// 导出 end |
||||
|
searchData: { |
||||
|
id:'', |
||||
|
phaseCode: '', |
||||
|
phaseDescription: '', |
||||
|
identificationCode: '', |
||||
|
page: 1, |
||||
|
limit: 10, |
||||
|
}, |
||||
|
pageIndex: 1, |
||||
|
pageSize: 20, |
||||
|
totalPage: 0, |
||||
|
height: 200, |
||||
|
dataList: [], |
||||
|
dataListLoading: false, |
||||
|
modalFlag: false, |
||||
|
modalDisableFlag: false, |
||||
|
modalData: { |
||||
|
phaseCode: '', |
||||
|
phaseDescription: '', |
||||
|
identificationCode: '', |
||||
|
createTime: '', |
||||
|
}, |
||||
|
// 标头展示 |
||||
|
columnList: [ |
||||
|
{ |
||||
|
userId: this.$store.state.user.name, |
||||
|
functionId: 100001005, |
||||
|
serialNumber: '100001005TablePhaseCode', |
||||
|
tableId: "100001005Table", |
||||
|
tableName: "阶段代码", |
||||
|
columnWidth: 285, |
||||
|
columnProp: 'phaseCode', |
||||
|
headerAlign: 'center', |
||||
|
align: "center", |
||||
|
columnLabel: '阶段代码', |
||||
|
columnHidden: false, |
||||
|
columnImage: false, |
||||
|
columnSortable: false, |
||||
|
sortLv: 0, |
||||
|
status: true, |
||||
|
fixed: '', |
||||
|
}, |
||||
|
{ |
||||
|
userId: this.$store.state.user.name, |
||||
|
functionId: 100001005, |
||||
|
serialNumber: '100001005TablePhaseDescription', |
||||
|
tableId: "100001005Table", |
||||
|
tableName: "阶段描述", |
||||
|
columnWidth: 285, |
||||
|
columnProp: 'phaseDescription', |
||||
|
headerAlign: 'center', |
||||
|
align: "center", |
||||
|
columnLabel: '阶段描述', |
||||
|
columnHidden: false, |
||||
|
columnImage: false, |
||||
|
columnSortable: false, |
||||
|
sortLv: 0, |
||||
|
status: true, |
||||
|
fixed: '', |
||||
|
}, |
||||
|
{ |
||||
|
userId: this.$store.state.user.name, |
||||
|
functionId: 100001005, |
||||
|
serialNumber: '100001005TableIdentificationCode', |
||||
|
tableId: "100001005Table", |
||||
|
tableName: "标识码", |
||||
|
columnWidth: 285, |
||||
|
columnProp: 'identificationCode', |
||||
|
headerAlign: 'center', |
||||
|
align: "left", |
||||
|
columnLabel: '标识码', |
||||
|
columnHidden: false, |
||||
|
columnImage: false, |
||||
|
columnSortable: false, |
||||
|
sortLv: 0, |
||||
|
status: true, |
||||
|
fixed: '', |
||||
|
}, |
||||
|
{ |
||||
|
userId: this.$store.state.user.name, |
||||
|
functionId: 100001005, |
||||
|
serialNumber: '100001005TableCreateTime', |
||||
|
tableId: "100001005Table", |
||||
|
tableName: "创建时间", |
||||
|
columnWidth: 285, |
||||
|
columnProp: 'createTime', |
||||
|
headerAlign: 'center', |
||||
|
align: "center", |
||||
|
columnLabel: '创建时间', |
||||
|
columnHidden: false, |
||||
|
columnImage: false, |
||||
|
columnSortable: false, |
||||
|
sortLv: 0, |
||||
|
status: true, |
||||
|
fixed: '', |
||||
|
}, |
||||
|
{ |
||||
|
userId: this.$store.state.user.name, |
||||
|
functionId: 100001005, |
||||
|
serialNumber: '100001005TableCreator', |
||||
|
tableId: "100001005Table", |
||||
|
tableName: "创建人", |
||||
|
columnWidth: 285, |
||||
|
columnProp: 'creator', |
||||
|
headerAlign: 'center', |
||||
|
align: "center", |
||||
|
columnLabel: '创建人', |
||||
|
columnHidden: false, |
||||
|
columnImage: false, |
||||
|
columnSortable: false, |
||||
|
sortLv: 0, |
||||
|
status: true, |
||||
|
fixed: '', |
||||
|
}, |
||||
|
], |
||||
|
rules: { |
||||
|
// warehouseId:[ |
||||
|
// { |
||||
|
// required: true, |
||||
|
// message: ' ', |
||||
|
// trigger: ['blur','change'] |
||||
|
// } |
||||
|
// ], |
||||
|
// locationId:[ |
||||
|
// { |
||||
|
// required: true, |
||||
|
// message: ' ', |
||||
|
// trigger: ['blur','change'] |
||||
|
// } |
||||
|
// ], |
||||
|
// site:[ |
||||
|
// { |
||||
|
// required: true, |
||||
|
// message: ' ', |
||||
|
// trigger: ['blur','change'] |
||||
|
// } |
||||
|
// ], |
||||
|
// locationName:[ |
||||
|
// { |
||||
|
// required: true, |
||||
|
// message: ' ', |
||||
|
// trigger: ['blur','change'] |
||||
|
// } |
||||
|
// ] |
||||
|
}, |
||||
|
options: [], |
||||
|
userBuList: [], |
||||
|
authSearch: false, |
||||
|
authSave: false, |
||||
|
authUpdate: false, |
||||
|
authDelete: false, |
||||
|
menuId: this.$route.meta.menuId, |
||||
|
} |
||||
|
}, |
||||
|
|
||||
|
|
||||
|
|
||||
|
mounted () { |
||||
|
this.$nextTick(() => { |
||||
|
this.height = window.innerHeight - 180 |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
//页面加载前初始化着两个方法 |
||||
|
created () { |
||||
|
this.getDataList() |
||||
|
}, |
||||
|
|
||||
|
methods: { |
||||
|
// 获取用户的bu |
||||
|
getSiteAndBuByUserName () { |
||||
|
let tempData = { |
||||
|
username: this.$store.state.user.name, |
||||
|
} |
||||
|
getSiteAndBuByUserName(tempData).then(({data}) => { |
||||
|
if (data.code === 0) { |
||||
|
this.userBuList = data.rows |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
// 查询获取数据列表 |
||||
|
getDataList (){ |
||||
|
this.searchData.limit = this.pageSize |
||||
|
this.searchData.page = this.pageIndex |
||||
|
findStagingCode(this.searchData).then(({data}) => { |
||||
|
if (data.code === 0) { |
||||
|
this.dataList = data.page.list |
||||
|
this.pageIndex = data.page.currPage |
||||
|
this.pageSize = data.page.pageSize |
||||
|
this.totalPage = data.page.totalCount |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
// 每页数 |
||||
|
sizeChangeHandle (val) { |
||||
|
this.pageSize = val |
||||
|
this.pageIndex = 1 |
||||
|
this.getDataList() |
||||
|
}, |
||||
|
|
||||
|
// 当前页 |
||||
|
currentChangeHandle (val) { |
||||
|
this.pageIndex = val |
||||
|
this.getDataList() |
||||
|
}, |
||||
|
|
||||
|
// 新增按钮 |
||||
|
addModal () { |
||||
|
this.modalData = { |
||||
|
flag: '1', |
||||
|
creator: this.$store.state.user.name, |
||||
|
phaseCode: '', |
||||
|
phaseDescription: '', |
||||
|
identificationCode: '', |
||||
|
} |
||||
|
this.modalDisableFlag = false |
||||
|
this.modalFlag = true |
||||
|
}, |
||||
|
|
||||
|
// 修改按钮 |
||||
|
updateModal (row) { |
||||
|
this.modalData = { |
||||
|
flag: '2', |
||||
|
id:row.id, |
||||
|
phaseCode: row.phaseCode, |
||||
|
creator: this.$store.state.user.name, |
||||
|
phaseDescription: row.phaseDescription, |
||||
|
identificationCode: row.identificationCode, |
||||
|
} |
||||
|
this.modalDisableFlag = true |
||||
|
this.modalFlag = true |
||||
|
}, |
||||
|
|
||||
|
// 删除方法 |
||||
|
deleteModal (row) { |
||||
|
this.$confirm(`是否删除这个检验方法?`, '提示', { |
||||
|
confirmButtonText: '确定', |
||||
|
cancelButtonText: '取消', |
||||
|
type: 'warning' |
||||
|
}).then(() => { |
||||
|
deleteStagingCode(row).then(({data}) => { |
||||
|
if (data && data.code === 0) { |
||||
|
this.getDataList() |
||||
|
this.$message({ |
||||
|
message: '操作成功', |
||||
|
type: 'success', |
||||
|
duration: 1500, |
||||
|
onClose: () => {} |
||||
|
}) |
||||
|
} else { |
||||
|
this.$alert(data.msg, '错误', { |
||||
|
confirmButtonText: '确定' |
||||
|
}) |
||||
|
} |
||||
|
}) |
||||
|
}).catch(() => { |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
// 新增/修改方法 |
||||
|
saveData () { |
||||
|
// if (this.modalData.site === '' || this.modalData.site == null) { |
||||
|
// this.$message.warning('请输入工厂编码!') |
||||
|
// return |
||||
|
// } |
||||
|
// if (this.modalData.warehouseId === '' || this.modalData.warehouseId == null) { |
||||
|
// this.$message.warning('请选择仓库编码!') |
||||
|
// return |
||||
|
// } |
||||
|
// if(this.modalData.locationName === ''|| this.modalData.locationName == null){ |
||||
|
// this.$message.warning('请输入库位名称!') |
||||
|
// return |
||||
|
// } |
||||
|
// if(this.modalData.locationId === ''|| this.modalData.locationId == null){ |
||||
|
// this.$message.warning('请输入库位编码!') |
||||
|
// return |
||||
|
// } |
||||
|
if (this.modalData.flag === '1') { // 新增 |
||||
|
saveStagingCode(this.modalData).then(({data}) => { |
||||
|
if (data && data.code === 0) { |
||||
|
this.getDataList() |
||||
|
this.modalFlag = false |
||||
|
this.$message({ |
||||
|
message: '操作成功', |
||||
|
type: 'success', |
||||
|
duration: 1500, |
||||
|
onClose: () => {} |
||||
|
}) |
||||
|
} else { |
||||
|
this.$alert(data.msg, '错误', { |
||||
|
confirmButtonText: '确定' |
||||
|
}) |
||||
|
} |
||||
|
}) |
||||
|
} else { // 修改 |
||||
|
updateStagingCode(this.modalData).then(({data}) => { |
||||
|
if (data && data.code === 0) { |
||||
|
this.getDataList() |
||||
|
this.modalFlag = false |
||||
|
this.$message({ |
||||
|
message: '操作成功', |
||||
|
type: 'success', |
||||
|
duration: 1500, |
||||
|
onClose: () => {} |
||||
|
}) |
||||
|
} else { |
||||
|
this.$alert(data.msg, '错误', { |
||||
|
confirmButtonText: '确定' |
||||
|
}) |
||||
|
} |
||||
|
}) |
||||
|
} |
||||
|
}, |
||||
|
|
||||
|
// 查询检验类型 |
||||
|
inspectionTypeSearch () { |
||||
|
let tempData = { |
||||
|
site: this.$store.state.user.site |
||||
|
} |
||||
|
inspectionTypeSearch(tempData).then(({data}) => { |
||||
|
if (data.code === 0) { |
||||
|
this.options = data.rows |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
// 校验用户是否收藏 |
||||
|
favoriteIsOk () { |
||||
|
let userFavorite = { |
||||
|
userId: this.$store.state.user.id, |
||||
|
languageCode: this.$i18n.locale |
||||
|
} |
||||
|
userFavoriteList(userFavorite).then(({data}) => {for (let i = 0; i < data.list.length; i++) { |
||||
|
if(this.$route.meta.menuId === data.list[i].menuId){ |
||||
|
this.favorite = true |
||||
|
} |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
// 收藏 OR 取消收藏 |
||||
|
favoriteFunction () { |
||||
|
let userFavorite = { |
||||
|
userId: this.$store.state.user.id, |
||||
|
functionId: this.$route.meta.menuId, |
||||
|
} |
||||
|
if (this.favorite) { |
||||
|
removeUserFavorite(userFavorite).then(({data}) => { |
||||
|
this.$message.success(data.msg) |
||||
|
this.favorite = false |
||||
|
}) |
||||
|
} else { |
||||
|
// 收藏 |
||||
|
saveUserFavorite(userFavorite).then(({data}) => { |
||||
|
this.$message.success(data.msg) |
||||
|
this.favorite = true |
||||
|
}) |
||||
|
} |
||||
|
}, |
||||
|
|
||||
|
//导出excel |
||||
|
async createExportData() { |
||||
|
this.searchData.limit = -1 |
||||
|
this.searchData.page = 1 |
||||
|
await findStagingCode(this.searchData).then(({data}) => { |
||||
|
this.exportList= data.rows |
||||
|
}) |
||||
|
return this.exportList |
||||
|
}, |
||||
|
|
||||
|
startDownload() {}, |
||||
|
|
||||
|
finishDownload() {}, |
||||
|
|
||||
|
fields () { |
||||
|
let json = "{" |
||||
|
this.columnList.forEach((item, index) => { |
||||
|
if (index == this.columnList.length - 1) { |
||||
|
json += "\"" + item.columnLabel + "\"" + ":" + "\"" + item.columnProp + "\"" |
||||
|
} else { |
||||
|
json += "\"" + item.columnLabel + "\"" + ":" + "\"" + item.columnProp + "\"" + "," |
||||
|
} |
||||
|
}) |
||||
|
json += "}" |
||||
|
let s = eval("(" + json + ")") |
||||
|
return s |
||||
|
}, |
||||
|
|
||||
|
// 动态列开始 获取 用户保存的 格式列 |
||||
|
async getTableUserColumn (tableId, columnId) { |
||||
|
let queryTableUser = { |
||||
|
userId: this.$store.state.user.name, |
||||
|
functionId: this.$route.meta.menuId, |
||||
|
tableId: tableId, |
||||
|
status: true, |
||||
|
languageCode: this.$i18n.locale |
||||
|
} |
||||
|
await getTableUserListLanguage(queryTableUser).then(({data}) => { |
||||
|
if (data.rows.length > 0) { |
||||
|
//this.columnList1 = [] |
||||
|
switch (columnId) { |
||||
|
case 1: |
||||
|
this.columnList = data.rows |
||||
|
break; |
||||
|
// case 2: |
||||
|
// this.columnDetailList = data.rows |
||||
|
// break; |
||||
|
// case 3: |
||||
|
// this.columnList2 = data.rows |
||||
|
// break; |
||||
|
// case 4: |
||||
|
// this.columnList3 = data.rows |
||||
|
// break; |
||||
|
} |
||||
|
} else { |
||||
|
this.getColumnList(tableId, columnId) |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
// 获取 tableDefault 列 |
||||
|
async getColumnList (tableId, columnId) { |
||||
|
let queryTable = { |
||||
|
functionId: this.$route.meta.menuId, |
||||
|
tableId: tableId, |
||||
|
languageCode: this.$i18n.locale |
||||
|
} |
||||
|
await getTableDefaultListLanguage(queryTable).then(({data}) => { |
||||
|
if (!data.rows.length == 0) { |
||||
|
switch (columnId) { |
||||
|
case 1: |
||||
|
this.columnList = data.rows |
||||
|
break; |
||||
|
// case 2: |
||||
|
// this.columnDetailList = data.rows |
||||
|
// break; |
||||
|
// case 3: |
||||
|
// this.columnList2 = data.rows |
||||
|
// break; |
||||
|
// case 4: |
||||
|
// this.columnList3 = data.rows |
||||
|
// break; |
||||
|
} |
||||
|
} else { |
||||
|
// this.showDefault = true. |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
//获取按钮的权限数据 |
||||
|
getButtonAuthData () { |
||||
|
let searchFlag = this.isAuth(this.menuId+":search") |
||||
|
let saveFlag = this.isAuth(this.menuId+":save") |
||||
|
let updateFlag = this.isAuth(this.menuId+":update") |
||||
|
let deleteFlag = this.isAuth(this.menuId+":delete") |
||||
|
//处理页面的权限数据 |
||||
|
this.authSearch = !searchFlag |
||||
|
this.authSave = !saveFlag |
||||
|
this.authUpdate = !updateFlag |
||||
|
this.authDelete = !deleteFlag |
||||
|
}, |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue