耗材字典中对产品标识进行编辑,所显示的数据信息有误

prod
anthonywj 2 years ago
parent 21c01ee00a
commit eea09d08ff

@ -50,7 +50,7 @@
<el-table-column label="包装单位" prop="packUnit" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" width="180px">
<template slot-scope="scope">
<el-button type="text" @click.native.stop="singleDiEdit">编辑</el-button>
<el-button type="text" @click.native.stop="singleDiEdit(scope.row)">编辑</el-button>
</template>
</el-table-column>
</el-table>
@ -534,8 +534,9 @@ export default {
cancelDialog() {
this.editSingleDiDialogVisible = false;
},
singleDiEdit() {
let temp = JSON.parse(JSON.stringify(this.editQuery));
singleDiEdit(val) {
debugger
let temp = val;
this.editSingleFormat.uuid = temp.uuid;
this.editSingleFormat.id = temp.id;
this.editSingleFormat.sptm = temp.sptm;

@ -35,7 +35,7 @@ module.exports = {
proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {
target: `http://127.0.0.1:9991`,
target: `http://192.168.0.166:9991`,
changeOrigin: true,
pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: ''

Loading…
Cancel
Save