|
@@ -77,17 +77,14 @@
|
|
|
>
|
|
|
<template #operation="{ scope }">
|
|
|
<el-tooltip effect="dark" content="详情" placement="top">
|
|
|
- <i
|
|
|
- class="el-icon-view tb-icon"
|
|
|
- @click="@click="handleEdit(scope.$index)""
|
|
|
- ></i>
|
|
|
+ <i class="el-icon-view tb-icon" @click="handleEdit(scope.$index)"></i>
|
|
|
</el-tooltip>
|
|
|
</template>
|
|
|
</ex-table>
|
|
|
- <add-edit
|
|
|
- :sitem="sitem"
|
|
|
+ <add-edit
|
|
|
+ :sitem="sitem"
|
|
|
:show-model="showModel"
|
|
|
- @refresh="searchList"
|
|
|
+ @refresh="(showModel = false), searchList()"
|
|
|
@cancel="showModel = false"
|
|
|
/>
|
|
|
</div>
|
|
@@ -103,7 +100,7 @@ import addEdit from "./addEdit";
|
|
|
export default {
|
|
|
name: "othGoodFieldLog",
|
|
|
mixins: [mixinPage, resToken],
|
|
|
-components: {
|
|
|
+ components: {
|
|
|
addEdit,
|
|
|
},
|
|
|
computed: {
|
|
@@ -125,7 +122,7 @@ components: {
|
|
|
return {
|
|
|
loading: false,
|
|
|
showModel: false,
|
|
|
- sitem:null,
|
|
|
+ sitem: null,
|
|
|
parmValue: {
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
@@ -156,7 +153,7 @@ components: {
|
|
|
},
|
|
|
{
|
|
|
prop: "skuCode",
|
|
|
- label: "数据类型",
|
|
|
+ label: "上线商品编号",
|
|
|
},
|
|
|
{
|
|
|
prop: "item_id",
|
|
@@ -185,9 +182,9 @@ components: {
|
|
|
this.searchList();
|
|
|
},
|
|
|
methods: {
|
|
|
- handleEdit(index){
|
|
|
- this.sitem=JSON.parse(JSON.stringify(this.tableData[index]))
|
|
|
-
|
|
|
+ handleEdit(index) {
|
|
|
+ this.sitem = JSON.parse(JSON.stringify(this.tableData[index]));
|
|
|
+ this.showModel = true;
|
|
|
},
|
|
|
restSearch() {
|
|
|
// 表格 - 分页
|
|
@@ -232,7 +229,7 @@ components: {
|
|
|
const { code, data } = await asyncRequest.list(this.parmValue);
|
|
|
if (code === 0) {
|
|
|
const { list, count } = data;
|
|
|
- this.tableData= list;
|
|
|
+ this.tableData = list;
|
|
|
this.pageInfo.total = count;
|
|
|
} else if (code >= 100 && code <= 104) {
|
|
|
await this.logout();
|