新增物价类别

20231126-yw
anthonywj 1 year ago
parent 47affeb3ef
commit 3dd3db0524

@ -0,0 +1,9 @@
import axios from "@/utils/request";
export function getHslbs(query) {
return axios({
url: "/udiwms/thrsys/getHslbs",
method: "get",
params: query
});
}

@ -357,11 +357,16 @@
></el-table-column>
<el-table-column
:label="productRemarkSet.remarkTitle8"
prop="basicPrductRemak8"
prop="hslbName"
width="180"
show-overflow-tooltip
v-if="$auth.hasPermi('basic:basicPrductRemak8')"
></el-table-column>
>
<!-- <template slot-scope="scope">-->
<!-- {{ getHsflMethod(scope.row.basicPrductRemak8) }}-->
<!-- </template>-->
</el-table-column>
<el-table-column
label="是否在用"
@ -1593,6 +1598,7 @@ import productUdiType from "@/views/basic/product/productUdiType";
import selectHospProduct from "@/views/basic/product/bindHospProduct";
import selectUnBindHospProduct from "@/views/basic/product/unbindHospProduct";
import {getBasicHospType, getListTree} from "@/api/basic/basicHospType";
import {getHslbs} from "@/api/thrsys/thrHsfl";
export default {
data() {
@ -2204,6 +2210,25 @@ export default {
}
this.getList();
},
getHsflMethod(query) {
if (query == null)
return null;
this.hsflOptions = [];
let cQuery = {
code: query,
page: 1,
limit: 20
};
getHslbs(cQuery)
.then((response) => {
this.loading = false;
let result = response.data.list[0] || [];
return result.hsmc;
})
.catch(() => {
this.loading = false;
});
}
},
mounted() {
},
@ -2258,7 +2283,6 @@ export default {
}
.edit-row {
display: flex;
flex-wrap: wrap;

@ -253,12 +253,26 @@
</el-col>
<el-col :span="12" v-if="productRemarkSet.remarkEnable8">
<el-form-item :label="productRemarkSet.remarkTitle8+':'">
<el-input
style="width: 80%"
size="small"
splaceholder="请输入内容"
<el-select
v-model="editQuery.basicPrductRemak8"
></el-input>
filterable
remote
clearable="true"
reserve-keyword
placeholder="请选择物价类别"
:remote-method="findHsflMethod"
:loading="loading"
style="width: 80%"
>
<el-option
v-for="item in hsflOptions"
:key="item.hsbm"
:label="item.hsmc"
:value="item.hsbm"
>
<span style="float: left">{{ item.hsmc }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
@ -327,7 +341,8 @@
</el-col>
<el-divider direction="vertical"></el-divider>
<el-col span="5">
<el-select v-model="editQuery.useMuti" style="width: 65%" @change="setZdcfsycs" placeholder="状态" clearable>
<el-select v-model="editQuery.useMuti" style="width: 65%" @change="setZdcfsycs" placeholder="状态"
clearable>
<el-option label="是" :value="true"></el-option>
<el-option label="否" :value="false"></el-option>
</el-select>
@ -579,7 +594,9 @@ import ProductSingleEdit from "@/views/basic/product/productSingleEdit";
import selectErp from "./udiInfoselectErpUdi";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import Treeselect from "@riophae/vue-treeselect";
import { getListMenu, getOneName } from '@/api/basic/basicHospType'
import {getListMenu, getOneName} from '@/api/basic/basicHospType'
import {getSupComapnys} from "@/api/purchase/supCompany";
import {getHslbs} from "@/api/thrsys/thrHsfl";
export default {
@ -621,11 +638,13 @@ export default {
data() {
return {
loading: false,
isUseDyCheck: true,
useNumEnable: true,
sysList: [],
detailList: [],
fromDeptOptions: [],
hsflOptions: [],
defaultSys: null,
isImport: false,
selectErpDialogVisible: false, //ERP
@ -656,6 +675,11 @@ export default {
id: this.relevanceEdit.id
}
this.getDetailList(ttquery);
if (this.editQuery.basicPrductRemak8 != null) {
this.findHsflMethod(this.editQuery.basicPrductRemak8);
}
},
methods: {
diableChange() {
@ -860,21 +884,41 @@ export default {
}
},
getTreeselect() {
getOneName().then(res =>{
const menu = {id: res.data.id,code:res.data.code, name: res.data.name, children: []};
getOneName().then(res => {
const menu = {id: res.data.id, code: res.data.code, name: res.data.name, children: []};
getListMenu({}).then(response => {
this.fromDeptOptions = [];
menu.children = this.handleTree(response.data,"code", "parentCode");
menu.children = this.handleTree(response.data, "code", "parentCode");
console.log(menu)
this.fromDeptOptions.push(menu);
});
})
},
setZdcfsycs(){
if(this.editQuery.useMuti==false){
this.editQuery.useNum=0;
setZdcfsycs() {
if (this.editQuery.useMuti == false) {
this.editQuery.useNum = 0;
}
},
findHsflMethod(query) {
this.hsflOptions = [];
let cQuery = {
key: query,
page: 1,
limit: 20
};
getHslbs(cQuery)
.then((response) => {
this.loading = false;
this.hsflOptions = response.data.list || [];
})
.catch(() => {
this.loading = false;
});
}
,
/** 转换菜单数据结构 */
normalizer(node) {
if (node.children && !node.children.length) {

Loading…
Cancel
Save