|
|
|
@ -83,9 +83,9 @@
|
|
|
|
|
<el-table-column label="审核意见" prop="remark" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="操作" >
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="detailDialog(scope.row)">详情</el-button>
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="detailDialog(scope.row,1)">详情</el-button>
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)" :disabled="scope.row.status==2">删除</el-button>
|
|
|
|
|
<el-button type="text" size="small" :disabled="scope.row.status==2" @click="checDialog(scope.row)">审核</el-button>
|
|
|
|
|
<el-button type="text" size="small" :disabled="scope.row.status==2" @click="detailDialog(scope.row,2)">审核</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
@ -101,24 +101,30 @@
|
|
|
|
|
<el-dialog
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
title="产品信息详情"
|
|
|
|
|
:title=title
|
|
|
|
|
:visible.sync="thrProductsDiDetailVisible"
|
|
|
|
|
width="60%"
|
|
|
|
|
v-if="thrProductsDiDetailVisible"
|
|
|
|
|
>
|
|
|
|
|
<selectDiDetail :editQuery="thisData"></selectDiDetail>
|
|
|
|
|
<selectDiDetail
|
|
|
|
|
:editQuery="thisData"
|
|
|
|
|
:editDate="editDate"
|
|
|
|
|
:close="close"
|
|
|
|
|
>
|
|
|
|
|
</selectDiDetail>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
title="产品信息详情"
|
|
|
|
|
:title=title
|
|
|
|
|
:visible.sync="thrProductsDetailVisible"
|
|
|
|
|
width="80%"
|
|
|
|
|
v-if="thrProductsDetailVisible"
|
|
|
|
|
>
|
|
|
|
|
<thrProductsDetail
|
|
|
|
|
:data="thisDetail"
|
|
|
|
|
:close="close"
|
|
|
|
|
></thrProductsDetail>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<el-dialog
|
|
|
|
@ -173,6 +179,8 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
total: 0,
|
|
|
|
|
list: [],
|
|
|
|
|
title:null,
|
|
|
|
|
editDate:null,
|
|
|
|
|
thisDetail:null,
|
|
|
|
|
uploadFileUrl: null,
|
|
|
|
|
fileList: [],
|
|
|
|
@ -218,6 +226,11 @@ export default {
|
|
|
|
|
this.remark = ''
|
|
|
|
|
this.curRow = row
|
|
|
|
|
},
|
|
|
|
|
close(){
|
|
|
|
|
this.thrProductsDiDetailVisible=false;
|
|
|
|
|
this.thrProductsDetailVisible=false;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
search() {
|
|
|
|
|
this.filterQuery.page = 1
|
|
|
|
|
this.getList()
|
|
|
|
@ -267,19 +280,29 @@ export default {
|
|
|
|
|
.catch(() => {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
detailDialog(row) {
|
|
|
|
|
detailDialog(row,type) {
|
|
|
|
|
if(type==1){
|
|
|
|
|
this.title="产品信息详情"
|
|
|
|
|
}else{
|
|
|
|
|
this.title="产品信息审核"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(row.type==1){
|
|
|
|
|
let query = { uuid: row.uuid }
|
|
|
|
|
getDiProductDetail(query).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.thisData = res.data
|
|
|
|
|
this.editDate=row
|
|
|
|
|
this.thisData.isAudit=type
|
|
|
|
|
this.thrProductsDiDetailVisible = true
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error('参数错误')
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}else{
|
|
|
|
|
debugger
|
|
|
|
|
this.thisDetail = row;
|
|
|
|
|
this.thisDetail.isAudit=type
|
|
|
|
|
this.thrProductsDetailVisible = true;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|