分类第三方产品信息问题

dev
anthonywj 2 years ago
parent 8a7b3bd549
commit f8a186618a

@ -19,9 +19,10 @@
<el-button <el-button
type="text" type="text"
size="mini" size="mini"
style="margin-left: 10px"
@click="() => append(data,'add')"> @click="() => append(data,'add')">
新增 新增
</el-button> </el-button>
<el-button <el-button
type="text" type="text"
size="mini" size="mini"
@ -331,7 +332,7 @@
v-model="subData.parentCode" v-model="subData.parentCode"
:options="fromDeptOptions" :options="fromDeptOptions"
:normalizer="normalizer" :normalizer="normalizer"
:clearable = "false" :clearable="false"
:show-count="true" :show-count="true"
placeholder="选择上级菜单" placeholder="选择上级菜单"
/> />
@ -1331,7 +1332,6 @@
</el-dialog> </el-dialog>
</el-card> </el-card>
</div> </div>
</template> </template>
@ -1364,26 +1364,26 @@ export default {
checked: false, checked: false,
sysList: [], sysList: [],
productRemarkSet: {}, productRemarkSet: {},
inputQuery:{}, inputQuery: {},
editDialogVisible:false, editDialogVisible: false,
loading: false, loading: false,
total:0, total: 0,
list:[], list: [],
selectHospProductVisible: false, selectHospProductVisible: false,
rId:null, rId: null,
subFormVisible: false, subFormVisible: false,
formMap: { formMap: {
add: "新增", add: "新增",
edit: "编辑" edit: "编辑"
}, },
fromDeptOptions:[], fromDeptOptions: [],
subData: {}, subData: {},
formName:null, formName: null,
showSearch: true, showSearch: true,
treeList: [], treeList: [],
Dictionary: false, // Dictionary: true, //
filterQuery: { filterQuery: {
code:"", code: "",
parentCode: "", parentCode: "",
unionCode: null, unionCode: null,
udiCode: null, udiCode: null,
@ -1447,7 +1447,7 @@ export default {
}, },
diEdit(row){ diEdit(row) {
this.uuid = row.uuid; this.uuid = row.uuid;
this.relId = row.id; this.relId = row.id;
this.isImport = false; this.isImport = false;
@ -1488,27 +1488,27 @@ export default {
this.sysList = []; this.sysList = [];
}); });
}, },
deleteDialog(row){ deleteDialog(row) {
this.$confirm('确认删除吗?','提示',{ this.$confirm('确认删除吗?', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'
}) })
.then(()=>{ .then(() => {
let param={ let param = {
id:row.bpcrid id: row.bpcrid
} }
deleterel(param) deleterel(param)
.then((res) => { .then((res) => {
if(res.code == 20000){ if (res.code == 20000) {
this.$message.success("删除成功!"); this.$message.success("删除成功!");
}else{ } else {
this.$message.error(res.message); this.$message.error(res.message);
} }
this.getList(); this.getList();
}) })
}) })
.catch(()=>{ .catch(() => {
}) })
@ -1516,22 +1516,21 @@ export default {
}, },
closeCategory() {
closeCategory(){ this.selectHospProductVisible = false;
this.selectHospProductVisible=false;
this.getList(); this.getList();
}, },
handleCurrentChange(val){ handleCurrentChange(val) {
this.filterQuery.page=val.page; this.filterQuery.page = val.page;
this.getList(); this.getList();
}, },
handleForm(){ handleForm() {
if(this.rId == null || this.rId == 10000){ if (this.rId == null || this.rId == 10000) {
this.$message("请选择分类!"); this.$message("请选择分类!");
this.selectHospProductVisible = false; this.selectHospProductVisible = false;
}else{ } else {
this.selectHospProductVisible = true; this.selectHospProductVisible = true;
} }
@ -1545,22 +1544,22 @@ export default {
} else { } else {
this.filterQuery.code = null; this.filterQuery.code = null;
} }
this.filterQuery.page=1; this.filterQuery.page = 1;
this.getList(); this.getList();
}, },
remove(node, data){ remove(node, data) {
debugger debugger
if(data.id){ if (data.id) {
this.$confirm("确认删除该节点吗?", "提示",{ this.$confirm("确认删除该节点吗?", "提示", {
type:"warning", type: "warning",
}) })
.then(()=>{ .then(() => {
this.deleteLoading = true; this.deleteLoading = true;
let param={id:data.id,code:data.code }; let param = {id: data.id, code: data.code};
deleteBasicHospType(param) deleteBasicHospType(param)
.then((response) =>{ .then((response) => {
this.deleteLoading = false; this.deleteLoading = false;
if (response.code !== 20000) { if (response.code !== 20000) {
this.$message.error(response.message); this.$message.error(response.message);
@ -1569,29 +1568,28 @@ export default {
this.getTerrList(); this.getTerrList();
this.$message.success("删除成功"); this.$message.success("删除成功");
}) })
.catch(()=>{ .catch(() => {
this.deleteLoading = false; this.deleteLoading = false;
}) })
}) })
.catch(()=>{ .catch(() => {
this.$message.info("取消删除"); this.$message.info("取消删除");
}) })
} }
}, },
forInvSubmit() { //
forInvSubmit(){ // if (this.subData.code != 10000 && this.subData.parentCode == null) {
if(this.subData.code!=10000 && this.subData.parentCode==null){
this.$message.error("上级菜单不能为空"); this.$message.error("上级菜单不能为空");
return return
} }
if(this.subData.name==null){ if (this.subData.name == null) {
this.$message.error("名称不能为空!"); this.$message.error("名称不能为空!");
return return
} }
if(this.subData.id!=null){ if (this.subData.id != null) {
uodateBasicHospType(this.subData).then((response) => { uodateBasicHospType(this.subData).then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.subFormVisible = false; this.subFormVisible = false;
@ -1602,7 +1600,7 @@ export default {
}).catch(() => { }).catch(() => {
this.subFormVisible = false; this.subFormVisible = false;
}); });
}else{ } else {
saveBasicHospType(this.subData).then((response) => { saveBasicHospType(this.subData).then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.subFormVisible = false; this.subFormVisible = false;
@ -1616,12 +1614,10 @@ export default {
} }
}, },
hideForm() {
hideForm(){
this.formVisible = false; this.formVisible = false;
this.subFormVisible = false; this.subFormVisible = false;
this.resetForm(); this.resetForm();
@ -1638,14 +1634,14 @@ export default {
} }
}, },
append(data,formName){// append(data, formName) {//
this.formName = formName; this.formName = formName;
if (formName === "edit") { if (formName === "edit") {
this.subData = JSON.parse(JSON.stringify(data)); this.subData = JSON.parse(JSON.stringify(data));
this.subData.name= JSON.parse(JSON.stringify(data.label)); this.subData.name = JSON.parse(JSON.stringify(data.label));
}else if(formName === "add"){ } else if (formName === "add") {
this.subData= { this.subData = {
parentCode:JSON.parse(JSON.stringify(data)).code parentCode: JSON.parse(JSON.stringify(data)).code
}; };
} }
this.getTreeselect(data); this.getTreeselect(data);
@ -1654,17 +1650,17 @@ export default {
/** 查询菜单下拉树结构 */ /** 查询菜单下拉树结构 */
getTreeselect(row) { getTreeselect(row) {
if(row!=null){ if (row != null) {
var data={ var data = {
code:row.code, code: row.code,
type:1 type: 1
} }
} }
getOneName().then(res =>{ getOneName().then(res => {
const menu = {id: res.data.id,code:res.data.code, name: res.data.name, children: []}; const menu = {id: res.data.id, code: res.data.code, name: res.data.name, children: []};
getListMenu(data).then(response => { getListMenu(data).then(response => {
this.fromDeptOptions = []; this.fromDeptOptions = [];
menu.children = this.handleTree(response.data,"code", "parentCode"); menu.children = this.handleTree(response.data, "code", "parentCode");
console.log(menu) console.log(menu)
this.fromDeptOptions.push(menu); this.fromDeptOptions.push(menu);
console.log(this.fromDeptOptions) console.log(this.fromDeptOptions)
@ -1729,7 +1725,7 @@ export default {
mounted() { mounted() {
}, },
components: { components: {
Treeselect,selectProduct, Treeselect, selectProduct,
}, },
created() { created() {
this.getList(); this.getList();
@ -1751,6 +1747,7 @@ export default {
height: 100%; height: 100%;
align-items: start; align-items: start;
} }
.el-tree-node:focus > .el-tree-node__content { .el-tree-node:focus > .el-tree-node__content {
background-color: rgb(158, 213, 250) !important; background-color: rgb(158, 213, 250) !important;
} }

@ -64,19 +64,22 @@
<el-row> <el-row>
<el-col :span="6"> <el-col :span="6">
<el-form-item label="类别编码:" class="query-form-item"> <el-form-item label="物资分类:" class="query-form-item">
<el-input v-model="listQuery.category" style="width: 100%" placeholder="请输入类别编码" clearable="true"></el-input> <el-input v-model="listQuery.category" style="width: 100%" placeholder="请输入物资分类名称"
clearable="true"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6" v-if="productRemarkSet.remarkEnable1"> <el-col :span="6" v-if="productRemarkSet.remarkEnable1">
<el-form-item :label="productRemarkSet.remarkTitle1+':'" class="query-form-item"> <el-form-item :label="productRemarkSet.remarkTitle1+':'" class="query-form-item">
<el-input v-model="listQuery.basicPrductRemak1" style="width: 100%" :placeholder="productRemarkSet.remarkTitle1" <el-input v-model="listQuery.basicPrductRemak1" style="width: 100%"
:placeholder="productRemarkSet.remarkTitle1"
clearable="true"></el-input> clearable="true"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="6" v-if="productRemarkSet.remarkEnable2"> <el-col :span="6" v-if="productRemarkSet.remarkEnable2">
<el-form-item :label="productRemarkSet.remarkTitle2 +':'" class="query-form-item"> <el-form-item :label="productRemarkSet.remarkTitle2 +':'" class="query-form-item">
<el-input v-model="listQuery.basicPrductRemak2" style="width: 100%" :placeholder="productRemarkSet.remarkTitle2" <el-input v-model="listQuery.basicPrductRemak2" style="width: 100%"
:placeholder="productRemarkSet.remarkTitle2"
clearable="true"></el-input> clearable="true"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>

Loading…
Cancel
Save