12/9 药品详情显示

20240912_adapter
wangwei 4 months ago
parent 0c9ce57f9c
commit b9a209996c

@ -212,7 +212,7 @@
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
type="text" type="text"
@click="linkPage('/order/checked')" @click="linkPage(scope.row)"
>处理 >处理
</el-button> </el-button>
</template> </template>
@ -318,8 +318,15 @@ export default {
this.certMsgCount = res.data this.certMsgCount = res.data
}) })
}, },
linkPage(path) { linkPage(row) {
let path = ""
if (row.productType == 2){
path = "/drug/order/drug/checked"
}else {
path = "/order/checked"
}
console.log(path) console.log(path)
this.$router.push(path) this.$router.push(path)
}, },
getSysMsgTodoList() { getSysMsgTodoList() {

@ -14,8 +14,8 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
<el-form-item label="规格型号:"> <el-form-item label="包装规格:">
<el-input v-model="filterQuery.ggxh" style="width: 90%" placeholder="请输入规格型号"></el-input> <el-input v-model="filterQuery.bzgg" style="width: 90%" placeholder="请输入包装规格"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6"> <el-col :span="6">
@ -77,7 +77,6 @@
<el-table-column label="序号" type="index" width="55"></el-table-column> <el-table-column label="序号" type="index" width="55"></el-table-column>
<el-table-column label="药品编码" prop="nameCode" width="120" show-overflow-tooltip></el-table-column> <el-table-column label="药品编码" prop="nameCode" width="120" show-overflow-tooltip></el-table-column>
<el-table-column label="药品名称" prop="cpmctymc" width="160" show-overflow-tooltip></el-table-column> <el-table-column label="药品名称" prop="cpmctymc" width="160" show-overflow-tooltip></el-table-column>
<el-table-column label="规格型号" prop="ggxh" width="160"></el-table-column>
<el-table-column label="包装规格" prop="bzgg" width="100"></el-table-column> <el-table-column label="包装规格" prop="bzgg" width="100"></el-table-column>
<el-table-column label="计量单位" prop="measname" width="90"></el-table-column> <el-table-column label="计量单位" prop="measname" width="90"></el-table-column>
<el-table-column label="批次号" prop="batchNo" width="90"></el-table-column> <el-table-column label="批次号" prop="batchNo" width="90"></el-table-column>
@ -87,7 +86,7 @@
<el-table-column label="入库数量" prop="inCount" width="90"></el-table-column> <el-table-column label="入库数量" prop="inCount" width="90"></el-table-column>
<el-table-column label="出库数量" prop="outCount" width="90"></el-table-column> <el-table-column label="出库数量" prop="outCount" width="90"></el-table-column>
<el-table-column label="结余数量" prop="reCount" width="90"></el-table-column> <el-table-column label="结余数量" prop="reCount" width="90"></el-table-column>
<el-table-column label="生产企业" prop="ylqxzcrbarmc" width="180"></el-table-column> <el-table-column label="生产企业" prop="manufactory" width="180"></el-table-column>
<el-table-column label="批准文号" prop="zczbhhzbapzbh" width="180"></el-table-column> <el-table-column label="批准文号" prop="zczbhhzbapzbh" width="180"></el-table-column>
<el-table-column label="供应商" prop="supName" width="180"></el-table-column> <el-table-column label="供应商" prop="supName" width="180"></el-table-column>
</el-table> </el-table>

@ -436,11 +436,12 @@ export default {
if (this.editQuery.uuid != null) { if (this.editQuery.uuid != null) {
this.query.uuid = this.editQuery.uuid this.query.uuid = this.editQuery.uuid
// type id // type id
if (this.type == 1) { // if (this.type == 1) {
this.query.id = this.editQuery.rlId; // type 1使 relId this.query.id = this.editQuery.rlId; // type 1使 relId
} else { // }
this.query.id = this.editQuery.id; // 使 id // else {
} // this.query.id = this.editQuery.id; // 使 id
// }
filterByUuid(this.query) filterByUuid(this.query)
.then((response) => { .then((response) => {
this.loading = false this.loading = false

Loading…
Cancel
Save