物资入院审核页面修改

ywj_dev
郑明梁 2 years ago
parent e47ef51771
commit 47774849de

@ -2,6 +2,22 @@
<div> <div>
<el-card> <el-card>
<el-form :model="editQuery" :rules="rules" ref="editQuery" label-width="150px" style="margin-top: 20px" > <el-form :model="editQuery" :rules="rules" ref="editQuery" label-width="150px" style="margin-top: 20px" >
<el-row v-if="editQuery.isAudit==2" type="flex" justify="end">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px;margin-top: -10px">
<el-button type="primary" @click="checkPass(2)"></el-button>
<el-button type="primary" @click="checkPass(3)"></el-button>
</el-button-group>
</el-row>
<el-row v-if="editQuery.isAudit==2">
<el-col :span="12">
<el-form-item label="审核意见:">
<el-input style="width: 90%" size="small" splaceholder="请输入审核意见" v-model="remark"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-collapse v-model="activeNames"> <el-collapse v-model="activeNames">
<el-collapse-item name="1"> <el-collapse-item name="1">
<template slot="title"> <template slot="title">
@ -204,6 +220,8 @@
<script> <script>
import { updateDiProduct } from '@/api/supplier/supProductsAddDi'
export default { export default {
name: "SelectDIDetailDialog", name: "SelectDIDetailDialog",
props: { props: {
@ -211,13 +229,44 @@ export default {
type: Object, type: Object,
required: true, required: true,
}, },
close:{
type:Function,
required: true,
},
editDate: {
type: Object,
required: true,
},
}, },
data() { data() {
return { return {
activeNames: ['1'] activeNames: ['1'],
remark:"",
} }
}, },
methods: {}, methods: {
checkPass(val) {
let query = {
id: this.editDate.id,
status: val,
uuid: this.editDate.uuid,
customerId: this.editDate.customerId,
remark: this.remark
}
updateDiProduct(query).then((res) => {
if (res.code === 20000) {
this.close();
} else {
this.$message.error(res.message)
}
}).catch((error) => {
this.$message.error(error.message)
})
},
},
created() { created() {
}, },

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

@ -3,6 +3,14 @@
<el-card class="el-card"> <el-card class="el-card">
<div v-if="!isImport" style="margin-bottom: 20px"> <div v-if="!isImport" style="margin-bottom: 20px">
<el-form :model="data" size="mini" label-width="150px"> <el-form :model="data" size="mini" label-width="150px">
<el-row v-if="data.isAudit==2" type="flex" justify="end">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px;margin-top: -10px">
<el-button type="primary" @click="checkPass(2)"></el-button>
<el-button type="primary" @click="checkPass(3)"></el-button>
</el-button-group>
</el-row>
<div style="margin-bottom: 20px"> <div style="margin-bottom: 20px">
<el-row> <el-row>
<el-col :span="12" class="el-col"> <el-col :span="12" class="el-col">
@ -95,10 +103,16 @@
</el-col> </el-col>
</el-row> </el-row>
<el-row>
<el-col :span="23" class="el-col" style="margin-top: 12px"> <el-row v-if="data.isAudit==2">
<el-col :span="12">
<el-form-item label="审核意见:">
<el-input style="width: 90%" size="small" splaceholder="请输入审核意见" v-model="remark"></el-input>
</el-form-item>
</el-col>
<el-col :span="12" class="el-col" style="margin-top: 12px">
<el-form-item label="产品描述:"> <el-form-item label="产品描述:">
<el-input style="width: 100%" :disabled="true" type="textarea" size="mini" rows="4" placeholder="请输入内容" v-model.trim="data.cpms"></el-input> <el-input style="width: 90%" :disabled="true" type="textarea" size="mini" rows="1" placeholder="请输入内容" v-model.trim="data.cpms"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
@ -110,6 +124,8 @@
</template> </template>
<script> <script>
import { updateDiProduct } from '@/api/supplier/supProductsAddDi'
export default { export default {
name: "ThrProductsDetail", name: "ThrProductsDetail",
props: { props: {
@ -117,7 +133,40 @@ export default {
type: Object, type: Object,
required: true, required: true,
}, },
close:{
type:Function,
required: true,
},
},
data() {
return {
remark:"",
}
},
methods: {
checkPass(val) {
let query = {
id: this.data.id,
status: val,
uuid: this.data.uuid,
customerId: this.data.customerId,
remark: this.remark
}
updateDiProduct(query).then((res) => {
if (res.code === 20000) {
this.close();
} else {
this.$message.error(res.message)
}
}).catch((error) => {
this.$message.error(error.message)
})
}, },
},
} }
</script> </script>

Loading…
Cancel
Save