新增生产企业字典维护

zyy_db
anthonywj 1 year ago
parent 346d257e66
commit 4d1eb8e33f

@ -0,0 +1,61 @@
import axios from "@/utils/request";
export function getBasicManuMaintains(query) {
return axios({
url: "/udiwms/basic/manu/maintain/filter",
method: "get",
params: query
});
}
export function basicUnitMaintainSave(data, formName, method = "post") {
let url =
formName === "add" ? "/udiwms/basic/manu/maintain/save" : "/udiwms/basic/manu/maintain/update";
return axios({
url: url,
method: method,
data: data
});
}
export function deleteBasicUnitMaintain(query) {
return axios({
url: "/udiwms/basic/manu/maintain/delete",
method: "post",
data: query
});
}
export function combine(query) {
return axios({
url: "/udiwms/basic/manu/maintain/combine",
method: "post",
data: query
});
}
export function combineAll(query) {
return axios({
url: "/udiwms/basic/manu/maintain/combineAll",
method: "get",
params: query
});
}
export function combineSingle(query) {
return axios({
url: "/udiwms/basic/manu/maintain/combineSingle",
method: "post",
data: query
});
}
export function getThrsysUnit(query) {
return axios({
url: "/udiwms/manutMaintain/thirdSys/detail",
method: "get",
params: query
});
}

@ -538,9 +538,7 @@ export default {
},
getThirdSysDetail() {
let query = {};
if (this.formName == "update") {
query = {
id: this.editQuery.id,
@ -555,8 +553,8 @@ export default {
this.loading = false;
this.sysList = [];
});
}
,
},
change() {
var pinyin = require("pinyin");
var py = pinyin(this.editQuery.name, {

@ -0,0 +1,227 @@
<template>
<div>
<el-card class="el-card">
<el-form :model="unitQuery" size="mini" label-width="100px" v-if="showSearch">
<el-row>
<el-col :span="6">
<el-form-item label="往来单位编码:">
<el-input v-model="unitQuery.unitId" style="width: 90%" placeholder="请输入往来单位编码" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="请设置主系统:">
<el-select v-model="thirdSysFk" style="width: 90%" placeholder="请设置主系统" disabled>
<el-option
v-for="item in thirdSys"
:key="item.value"
:label="item.thirdName"
:value="item.thirdId">
<span style="float: left">{{ item.thirdName }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.thirdId }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group style="display:flex;">
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="search"></el-button>
<el-button type="primary" size="mini" icon="el-icon-bottom-right" @click="combine"></el-button>
<el-button type="primary" size="mini" icon="el-icon-bottom-right" @click="combineAll"></el-button>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table :data="unitlList" style="width: 100%" @selection-change="handleSelectionUdiChange" border
highlight-current-row>
<el-table-column type="selection" width="55" :selectable="checkSelectable"></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="往来单位编码" prop="unitId"></el-table-column>
<el-table-column label="往来单位名称" prop="name" show-overflow-tooltip></el-table-column>
<el-table-column label="往来单位简写" show-overflow-tooltip prop="spell"></el-table-column>
<el-table-column label="地址" prop="addr" show-overflow-tooltip></el-table-column>
</el-table>
</el-card>
<pagination
v-show="total>0"
:total="total"
:page.sync="unitQuery.page"
:limit.sync="unitQuery.limit"
@pagination="handlepageChange"
></pagination>
</div>
</template>
<script>
import {getBasicThirdSys} from "@/api/basic/basicThirdSys";
import {getCorps} from "@/api/thrsys/thrManus";
import {combine, combineAll} from "@/api/basic/basicManuMaintain";
export default {
data() {
return {
showSearch: true,
unitQuery: {
page: 1,
limit: 10,
key: "",
thirdSys: null,
},
combineQuery: {
thirdSys: "",
keys: [],
custmandocResponses: [],
},
total: 0,
erpTotal: 0,
checked: false,
unitlList: [],
erpList: [],
currentRow: null,
multipleUdiSelection: [],
thirdSys: [],
thirdSysFk: null,
};
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.unitQuery = {
key: "",
page: 1,
limit: 10,
thirdSys: null,
};
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
handlepageChange(val) {
this.unitQuery.page = val.page;
this.getList();
},
handleErppageChange(val) {
this.erpQuery.page = val;
this.getErpList();
},
checkSelectable(row) {
return !row.checked;
},
search() {
this.unitQuery.page = 1;
this.getList();
},
getList() {
this.loading = true;
this.unitQuery.thirdSys = this.thirdSysFk;
getCorps(this.unitQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.unitlList = response.data.list || [];
this.total = response.data.total || 0;
} else {
this.$message.error(response.message);
this.unitlList = [];
this.total = 0;
}
})
.catch(() => {
this.loading = false;
this.unitlList = [];
this.total = 0;
});
},
intentBack() {
this.$router.go(-1);
},
getBasicThirdSys() {
let query = {
enabled: true,
mainSys: true,
};
getBasicThirdSys(query)
.then((response) => {
this.thirdSys = response.data.list || [];
this.thirdSysFk = this.thirdSys[0].thirdId;
this.getList();
})
.catch(() => {
this.loading = false;
this.list = [];
});
},
combine() {
let selectData = this.multipleUdiSelection;
var ids = [];
selectData.forEach((obj) => {
ids.push(obj);
});
if (ids.length == 0) {
this.$message.warning("请选择往来单位信息!");
return;
}
this.combineQuery.thirdSys = this.thirdSysFk;
this.combineQuery.custmandocResponses = ids;
combine(this.combineQuery)
.then((response) => {
if (response.code == 20000) {
this.$emit("closeMain", true);
} else {
this.$emit("closeMain", false);
}
})
.catch(() => {
this.$emit("closeMain", false);
});
},
combineAll() {
this.$confirm("此操作将在后台自动选入所有查询结果, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.unitQuery.thirdSys = this.thirdSysFk;
combineAll(this.unitQuery)
.then((response) => {
if (response.code == 20000) {
this.$emit("closeMain", true);
} else {
this.$emit("closeMain", false);
}
})
.catch(() => {
this.$emit("closeMain", false);
});
})
.catch(() => {
});
},
handleCurrentChange(val) {
this.currentRow = val;
this.unitQuery.key = this.currentRow.name;
},
handleSelectionUdiChange(val) {
this.multipleUdiSelection = val;
},
},
created() {
this.getBasicThirdSys();
},
};
</script>

@ -0,0 +1,239 @@
<template>
<div>
<el-card class="el-card">
<el-form :model="unitQuery" label-width="100px" v-if="showSearch" size="mini">
<el-row>
<el-col span="6">
<el-form-item label="生产企业编码:">
<el-input v-model="unitQuery.unitId" style="width: 90%" placeholder="生产企业编码" clearable></el-input>
</el-form-item>
</el-col>
<el-col span="6">
<el-form-item label="生产企业:">
<el-input v-model="unitQuery.name" style="width: 90%" placeholder="生产企业" clearable></el-input>
</el-form-item>
</el-col>
<el-col span="6">
<el-form-item label="外部系统:">
<el-select v-model="thirdSysFk" style="width: 90%" placeholder="请选择第三方系统" disabled="true">
<el-option
v-for="item in thirdSys"
:key="item.value"
:label="item.thirdName"
:value="item.thirdId">
<span style="float: left">{{ item.thirdName }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.thirdId }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group style="display:flex;">
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="searchList"></el-button>
<el-button type="primary" size="mini" icon="el-icon-bottom-right" @click="combine" :loading="combineLoading">
选入
</el-button>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table border highlight-current-row @current-change="handleCurrentChange" :data="unitlList"
:row-class-name="tableRowClassName" style="width: 100%">
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="生产企业编码" prop="unitId"></el-table-column>
<el-table-column label="生产企业名称" prop="name" show-overflow-tooltip></el-table-column>
<el-table-column label="生产企业简写" show-overflow-tooltip prop="spell"></el-table-column>
<el-table-column label="地址" prop="addr"></el-table-column>
</el-table>
</el-card>
<pagination
v-show="total>0"
:total="total"
:page.sync="unitQuery.page"
:limit.sync="unitQuery.limit"
@pagination="handlepageChange"
></pagination>
</div>
</template>
<script>
import {getBasicThirdSys} from "@/api/basic/basicThirdSys";
import {getCorps} from "@/api/thrsys/thrManus";
import {combine, combineAll, combineSingle} from "@/api/basic/basicManuMaintain";
export default {
name: "combinType",
props: {
corpData: {
type: Object,
required: true,
},
defaultSys: {
type: Object,
required: true,
}
},
data() {
return {
showSearch: true,
unitQuery: {
page: 1,
limit: 10,
key: "",
thirdSys: null,
},
combineQuery: {
thirdSys: "",
key: null,
basicErpUnitsResponse: [],
},
total: 0,
erpTotal: 0,
checked: false,
unitlList: [],
erpList: [],
currentRow: null,
multipleUdiSelection: [],
thirdSys: [],
thirdSysFk: null,
combineLoading: false,
};
},
methods: {
handlepageChange(val) {
this.unitQuery.page = val.page;
this.getList();
},
handleErppageChange(val) {
this.erpQuery.page = val;
this.getErpList();
},
searchList() {
this.unitQuery.page = 1;
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
onReset() {
this.unitQuery = {
page: 1,
limit: 10,
key: "",
thirdSys: null,
}
this.total = 0;
this.getList();
},
getList() {
this.loading = true;
this.unitQuery.thirdSys = this.thirdSysFk;
getCorps(this.unitQuery)
.then((response) => {
console.log(response);
this.loading = false;
if (response.code == 20000) {
this.unitlList = response.data.list || [];
this.total = response.data.total || 0;
} else {
this.$message.error(response.message);
this.unitlList = [];
this.total = 0;
}
})
.catch(() => {
this.loading = false;
this.unitlList = [];
this.total = 0;
});
},
intentBack() {
this.$router.go(-1);
},
getBasicThirdSys() {
let query = {
enabled: true,
};
getBasicThirdSys(query)
.then((response) => {
this.thirdSys = response.data.list || [];
this.thirdSysFk = this.thirdSys[0].thirdId;
if (this.defaultSys != null) {
this.thirdSysFk = this.defaultSys;
}
})
.catch(() => {
this.loading = false;
this.list = [];
});
},
handleCurrentChange(val) {
console.log(val);
this.combineQuery.thirdSys = this.thirdSysFk;
this.combineQuery.key = this.corpData.id;
this.combineQuery.basicErpUnitsResponse = val;
},
combine() {
if (this.combineQuery.key == null) {
this.$message.warning("未选择生产企业!");
return;
}
if (this.combineQuery.basicErpUnitsResponse.checked == true) {
this.$message.warning("该生产企业已被关联,不能重复选入!");
return;
}
this.combineLoading = true;
combineSingle(this.combineQuery)
.then((response) => {
this.combineLoading = false;
this.$emit("cancelDialog", true);
if (response.code == 20000) {
this.$message.success("关联成功!");
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.combineLoading = false;
this.$emit("cancelDialog", false);
});
},
tableRowClassName({row}) {
if (row.checked) return "warning-row";
return "";
},
handleSelectionUdiChange(val) {
console.log("----" + val[0].id);
this.multipleUdiSelection = val;
},
},
created() {
this.getBasicThirdSys();
},
};
</script>
<style scoped>
div /deep/ .el-table .warning-row {
background: #bebebe;
}
div /deep/ .el-table .success-row {
background: #ffffff;
}
</style>

@ -0,0 +1,627 @@
<template>
<div>
<el-card class="el-card">
<el-form :model="query" label-width="100px" class="query-form" size="mini" v-if="showSearch">
<el-row>
<el-col span="6">
<el-form-item label="搜索:">
<el-input v-model="query.key" placeholder="搜索" style="width: 90%" clearable="true"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group style="display:flex;">
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="search"></el-button>
<el-button type="primary" icon="el-icon-plus" @click.native="handleForm(null, null)"
:disabled="!configParms.basicCorp">新增
</el-button>
<el-button type="primary" icon="el-icon-bottom-right" @click="intentDetail"></el-button>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list" style="width: 100%" border highlight-current-row
@selection-change="handleSelectionChange">
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="生产企业编码" prop="erpId" show-overflow-tooltip></el-table-column>
<el-table-column label="第三方主系统ID" prop="thirdId" show-overflow-tooltip></el-table-column>
<el-table-column label="名称" prop="name" show-overflow-tooltip></el-table-column>
<el-table-column label="简写" prop="spell" show-overflow-tooltip></el-table-column>
<el-table-column label="社会信用号" prop="creditNo" show-overflow-tooltip></el-table-column>
<el-table-column label="地址" prop="addr" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" @click.native="handleForm(scope.$index, scope.row)">编辑</el-button>
<el-button type="text" :disabled="!configParms.basicCorp" @click.native.stop="deleteDialog(scope.row)">
删除
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="query.page"
:limit.sync="query.limit"
@pagination="handleCurrentChange"
></pagination>
<el-dialog
:title="combinTypeMap[combinType]"
:visible.sync="selectDrugDialogVisible"
width="80%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="selectDrugDialogVisible"
>
<selectUnit v-on:closeMain="closeMain"></selectUnit>
</el-dialog>
<el-dialog
:title="combinTypeMap[combinType]"
:visible.sync="selectSingleUnitVisible"
width="85%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="selectSingleUnitVisible"
>
<selectSingleUnit v-on:cancelDialog="cancelDialog" :corpData="corpData"
:defaultSys="defaultSys"></selectSingleUnit>
</el-dialog>
<!--表单-->
<el-dialog
:title="formMap[formName]"
:visible.sync="formVisible"
:before-close="hideForm"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="60%"
top="5vh"
>
<el-table :data="sysList" style="width: 100%" border v-if="formName=='update'">
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="第三方系统名称" prop="sysName" show-overflow-tooltip></el-table-column>
<el-table-column label="第三方生产企业ID" prop="thirdId" show-overflow-tooltip></el-table-column>
<el-table-column label="第三方生产企业名称" prop="thirdName" show-overflow-tooltip></el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button type="text" size="small" @click="intentSelect(scope.row)" :disabled="!configParms.basicCorp">
关联
</el-button>
<el-button type="text" size="small" @click.native.stop="removeErp(scope.row)"
:disabled="scope.row.thirdId=='' ||scope.row.thirdId==null || !configParms.basicCorp">解绑
</el-button>
</template>
</el-table-column>
</el-table>
<el-form :model="editQuery" :rules="formRules" style="margin-top: 20px" label-width="120px" ref="dataForm">
<el-row type="flex">
<el-col :span="12" type="flex">
<el-form-item label="生产企业名称" prop="name">
<el-input v-model="editQuery.name" size="small" style="width: 90%" auto-complete="off" @input="change()"
splaceholder="请输入生产企业名称"></el-input>
</el-form-item>
</el-col>
<el-col :span="12" type="flex">
<el-form-item label="生产企业编码" prop="erpId">
<el-input v-model="editQuery.erpId" style="width: 90%" auto-complete="off" disabled="true"
splaceholder="请输入生产企业编码"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row type="flex">
<el-col :span="12" type="flex">
<el-form-item label="社会信用号" prop="creditNo">
<el-input v-model="editQuery.creditNo" style="width: 90%" splaceholder="请输入社会信用号"
auto-complete="off"></el-input>
</el-form-item>
</el-col>
<el-col :span="12" type="flex">
<el-form-item label="联系人" prop="contact">
<el-input v-model="editQuery.contact" splaceholder="请输入联系人" style="width: 90%"
auto-complete="off"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row :type="flex">
<el-col :span="12" type="flex">
<el-form-item label="地址" prop="addr">
<el-input type="" v-model="editQuery.addr" splaceholder="请输入地址" style="width: 90%"
auto-complete="off"></el-input>
</el-form-item>
</el-col>
<el-col :span="12" type="flex">
<el-form-item label="联系电话" prop="mobile">
<el-input v-model="editQuery.mobile" splaceholder="请输入联系电话" auto-complete="off"
style="width: 90%"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row :type="flex">
<!-- <el-col :span="12" type="flex">-->
<!-- <el-form-item label="生产企业类型" prop="corpType">-->
<!-- <el-select v-model="editQuery.corpType" style="width: 90%" placeholder="请选择生产企业类型">-->
<!-- <el-option-->
<!-- v-for="item in corpTypeList"-->
<!-- :key="item.value"-->
<!-- :label="item.label"-->
<!-- :value="item.value">-->
<!-- </el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<el-col :span="12" type="flex">
<el-form-item label="拼音码" prop="spell">
<el-input v-model="editQuery.spell" placeholder="请输入拼音码" auto-complete="off"
style="width: 90%"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div style='text-align: center; margin-bottom: 10px;'>
<el-button @click.native="hideForm">取消</el-button>
<el-button type="primary" @click.native="formSubmit()" :loading="formLoading"
:disabled="!configParms.basicCorp">提交
</el-button>
</div>
</el-dialog>
</el-card>
</div>
</template>
<script>
import {
getBasicManuMaintains, basicUnitMaintainSave, deleteBasicUnitMaintain, getThrsysUnit
} from "@/api/basic/basicManuMaintain";
import selectUnit from "./corpRelevance";
import selectSingleUnit from "./corpSingleRelevance";
import {getBasicThirdSys} from "@/api/basic/basicThirdSys";
import {findConfig} from "@/api/sync/spsSyncStatus";
var pinyin = require("pinyin");
export default {
data() {
return {
query: {
key: "",
page: 1,
limit: 20,
},
showSearch: true,
erpIdColumn: false,
thirdIdColumn: false,
editQuery: {
id: "",
thirdId: "",
erpId: "",
name: "",
spell: "",
addr: "",
status: "",
type: "",
creditNo: "",
contact: "",
mobile: ""
},
corpData: null,
checked: false,
formName: null,
formMap: {
add: "新增",
update: "编辑"
},
formLoading: false,
formVisible: false,
combinType: 0,//0:1
combinTypeMap: {
0: "选入生产企业信息",
1: "关联生产企业信息",
},
corpTypeList: [
{
value: 1,
label: "客户"
},
{
value: 2,
label: "供应商"
},
{
value: 3,
// label: ""
label: "内部科室"
},
{
value: 4,
label: "特殊往来"
}
],
formRules: {
name: [
{required: true, message: "请输入名称", trigger: "blur"}
],
// erpId: [
// {required: true, message: "", trigger: "blur"}
// ],
creditNo: [
{required: true, message: "请输入社会信用号", trigger: "blur"}
],
corpType: [
{required: true, message: "请选择生产企业类型", trigger: "blur"}
]
},
spellUpdate: false,
editDialogVisible: false,
selectDrugDialogVisible: false,
selectSingleUnitVisible: false,
list: [],
sysList: [],
loading: false,
total: 0,
multipleSelection: [],
thirdSys: [],
thirdSysFk: null,
defaultSys: null,
configParms: {},
};
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.query = {
key: "",
corpType: "2",
page: 1,
limit: 20,
};
this.getList();
},
search() {
this.query.page = 1;
this.getList();
},
getList() {
this.loading = true;
this.erpIdColumn = false;
this.thirdIdColumn = false;
getBasicManuMaintains(this.query)
.then((response) => {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
hideSearch() {
this.showSearch = !this.showSearch;
},
//
resetForm() {
if (this.$refs["dataForm"]) {
//
this.$refs["dataForm"].clearValidate();
//
this.$refs["dataForm"].resetFields();
this.getList();
}
},
//
hideForm() {
//
this.formVisible = !this.formVisible;
this.getList();
return true;
},
//
handleForm(index, row) {
this.formVisible = true;
this.formName = "add";
this.spellUpdate = false;
if (index !== null) {
this.index = index;
this.formName = "update";
this.spellUpdate = true;
this.editQuery = row;
} else {
this.editQuery = {
id: "",
thirdId: "",
erpId: "",
name: "",
spell: "",
addr: "",
status: "",
type: "",
creditNo: "",
contact: "",
mobile: ""
};
}
this.getThirdSysDetail();
},
formSubmit() {
if (this.$isBlank(this.editQuery.corpType)) {
this.$message.error("生产企业类型不能为空!");
return;
}
this.$refs["dataForm"].validate(valid => {
if (valid) {
this.formLoading = true;
this.editQuery.thirdId = null;
this.editQuery.thirdId1 = null;
this.editQuery.thirdId2 = null;
this.editQuery.thirdId3 = null;
this.editQuery.thirdId4 = null;
this.editQuery.thirdName = null;
this.editQuery.thirdName1 = null;
this.editQuery.thirdName2 = null;
this.editQuery.thirdName3 = null;
this.editQuery.thirdName4 = null;
let data = Object.assign({}, this.editQuery);
basicUnitMaintainSave(data, this.formName)
.then(response => {
this.formLoading = false;
if (response.code !== 20000) {
this.$message.error(response.message);
return false;
}
this.$message.success("操作成功");
this.formVisible = false;
if (this.formName === "add") {
//
if (response.data && response.data.id) {
data.id = response.data.id;
this.list.unshift(data);
}
} else {
this.list.splice(this.index, 1, data);
}
//
this.resetForm();
})
.catch(() => {
this.formLoading = false;
});
}
});
},
deleteUnit(data) {
this.loading = true;
let tquery = {
id: data.id + "",
};
deleteBasicUnitMaintain(tquery)
.then((response) => {
if (response.code == 20000) {
this.getList();
this.$message({
type: "success",
message: "删除成功!",
});
} else {
this.$message.error(response.message);
}
})
.catch(() => {
});
},
cancelDialog() {
this.editDialogVisible = false;
this.selectSingleUnitVisible = false;
this.getList();
this.getThirdSysDetail();
},
closeMain(val) {
this.selectDrugDialogVisible = false;
if (val) {
this.$message.success("添加成功!");
this.getList();
} else {
this.$message.error("添加失败!");
}
},
handleModifyClick(row) {
this.editDialogVisible = true;
this.editQuery = row;
this.getThirdSysDetail();
},
deleteDialog(rowId) {
this.$confirm("此操作将永久删除该生产企业信息, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.deleteUnit(rowId);
})
.catch(() => {
});
},
exportTxt() {
},
intentDetail() {
this.combinType = 0;
this.selectDrugDialogVisible = true;
},
intentSelect(row) {
this.combinType = 1;
this.corpData = this.editQuery;
this.defaultSys = row.sysId;
this.selectSingleUnitVisible = true;
},
handleSelectionChange(val) {
this.multipleSelection = val;
},
handleCurrentChange(val) {
this.query.page = val.page;
this.getList();
},
getBasicThirdSys() {
let query = {
enabled: null,
};
getBasicThirdSys(query)
.then((response) => {
this.thirdSys = response.data.list || [];
this.thirdSysFk = this.thirdSys[0].thirdId;
})
.catch(() => {
this.loading = false;
this.list = [];
});
},
getThirdSysDetail() {
let query = {};
if (this.formName == "update") {
query = {
id: this.editQuery.id,
}
}
getThrsysUnit(query)
.then((response) => {
this.loading = false;
this.sysList = response.data.list || [];
})
.catch(() => {
this.loading = false;
this.sysList = [];
});
}
,
change() {
var pinyin = require("pinyin");
var py = pinyin(this.editQuery.name, {
style: pinyin.STYLE_FIRST_LETTER, //
heteronym: true,
});
var str = "";
py.forEach((item) => {
str = str + item[0];
});
this.editQuery.spell = str;
},
removeErp(row) {
this.$confirm("此操作将解除该绑定生产企业信息, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
let query = {
relId: this.editQuery.id,
thirdSys: row.sysId
};
removeRl(query)
.then((response) => {
if (response.code == 20000) {
this.getThirdSysDetail()();
this.$message({
type: "success",
message: "解绑成功!",
});
} else {
this.$message.error(response.message);
}
})
.catch(() => {
});
})
.catch(() => {
});
},
getSyncConfig() {
findConfig()
.then((response) => {
if (response.code == 20000) {
this.configParms = response.data;
}
})
.catch(() => {
});
},
}
,
mounted() {
}
,
components: {
selectUnit, selectSingleUnit
}
,
created() {
this.getList();
this.getSyncConfig();
this.getBasicThirdSys();
}
,
}
;
</script>
<style scoped>
.itemTag {
float: left;
text-align: left;
margin-top: 10px;
}
.text {
font-size: 13px;
font-family: "Microsoft YaHei";
}
.el-row {
display: flex;
flex-wrap: wrap;
}
.el-col {
border-radius: 4px;
flex-wrap: wrap;
}
</style>
Loading…
Cancel
Save