添加注释

ywj_dev
CTP 2 years ago
parent fdb4ec6be6
commit 4509e12005

@ -1,51 +1,87 @@
<template>
<!-- 单据类型设置 -->
<div>
<el-card>
<el-form :model="filterQuery" class="query-form" size="mini" label-width="100px" v-show="showSearch">
<el-form
:model="filterQuery"
class="query-form"
size="mini"
label-width="100px"
v-show="showSearch"
>
<el-row>
<el-col :span="6">
<el-form-item class="query-form-item" label="单据类型:">
<el-input v-model="filterQuery.name" placeholder="请输入单据类型" clearable style="width: 90%"></el-input>
<el-input
v-model="filterQuery.name"
placeholder="请输入单据类型"
clearable
style="width: 90%"
></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item class="query-form-item" label="出入库类型:">
<el-select v-model="filterQuery.mainAction" style="width: 90%" placeholder="请选择出入库类型">
<el-option label="全部" value=""></el-option>
<el-option label="入库" value="WareHouseIn"></el-option>
<el-option label="出库" value="WareHouseOut"></el-option>
</el-select>
</el-form-item>
<el-form-item class="query-form-item" label="出入库类型:">
<el-select
v-model="filterQuery.mainAction"
style="width: 90%"
placeholder="请选择出入库类型"
>
<el-option label="全部" value=""></el-option>
<el-option label="入库" value="WareHouseIn"></el-option>
<el-option label="出库" value="WareHouseOut"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item class="query-form-item" label="是否启用:">
<el-select v-model="filterQuery.enable" style="width: 90%" placeholder="是否启用">
<el-option label="全部" value=""></el-option>
<el-option label="已启用" value="1"></el-option>
<el-option label="未启用" value="0"></el-option>
</el-select>
</el-form-item>
<el-form-item class="query-form-item" label="是否启用:">
<el-select
v-model="filterQuery.enable"
style="width: 90%"
placeholder="是否启用"
>
<el-option label="全部" value=""></el-option>
<el-option label="已启用" value="1"></el-option>
<el-option label="未启用" value="0"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item class="query-form-item" label="仓库类型:">
<el-select v-model="filterQuery.actionType" style="width: 90%" placeholder="请选择仓库类型">
<el-option label="入账库" :value="1"></el-option>
<el-option label="预验收库" :value="2"></el-option>
<el-option label="寄售库" :value="3"></el-option>
</el-select>
</el-form-item>
<el-form-item class="query-form-item" label="仓库类型:">
<el-select
v-model="filterQuery.actionType"
style="width: 90%"
placeholder="请选择仓库类型"
>
<el-option label="入账库" :value="1"></el-option>
<el-option label="预验收库" :value="2"></el-option>
<el-option label="寄售库" :value="3"></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn" >
<div class="top-right-btn">
<el-button-group style="width: 600px">
<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="handleAddClick"></el-button>
<el-button type="primary" icon="el-icon-download" @click="exportJsonFile"></el-button>
<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="handleAddClick"
>新增</el-button
>
<el-button
type="primary"
icon="el-icon-download"
@click="exportJsonFile"
>导出单据类型</el-button
>
<el-upload
:action="uploadFileUrl"
multiple
@ -55,13 +91,21 @@
:on-success="handleChange"
:file-list="fileList"
>
<el-button icon="el-icon-upload2" type="primary">导入单据类型</el-button>
<el-button icon="el-icon-upload2" type="primary"
>导入单据类型</el-button
>
</el-upload>
</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>
<el-table
v-loading="loading"
:data="list"
style="width: 100%"
border
highlight-current-row
>
<el-table-column label="序号" type="index" width="60"></el-table-column>
<el-table-column label="单据类型" prop="name"></el-table-column>
<el-table-column label="出入库类型" prop="mainAction">
@ -95,18 +139,15 @@
<el-button
type="text"
@click.native.stop="handleModifyClick(scope.row)"
>编辑
</el-button
>
>编辑
</el-button>
<el-button
type="text"
:disabled="!configParams.typeScan"
@click.native.stop="deleteDialog(scope.row)"
>删除
</el-button
>
>删除
</el-button>
</template>
</el-table-column>
</el-table>
@ -124,14 +165,9 @@
<div slot="footer" class="dialog-footer">
<!-- :disabled="!configParams.typeScan"-->
<el-button type="primary" size="small" @click="onAddSubmit"
>提交
</el-button
>
<el-button size="small" @click="cancelDialog"
>取消
</el-button
>
>提交
</el-button>
<el-button size="small" @click="cancelDialog"> </el-button>
</div>
</el-dialog>
@ -144,22 +180,31 @@
v-if="modifyDialogVisible"
:before-close="cancelDialog"
>
<modifyDialog :inputQuery="inputQuery" :modifySubmit="onModifySubmit"></modifyDialog>
<div style="text-align: center;margin-top: 12px">
<el-button type="primary" size="small" icon="search" @click="onModifySubmit"
:disabled="!configParams.typeScan"
>提交
</el-button
>
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消
</el-button
>
<modifyDialog
:inputQuery="inputQuery"
:modifySubmit="onModifySubmit"
></modifyDialog>
<div style="text-align: center; margin-top: 12px">
<el-button
type="primary"
size="small"
icon="search"
@click="onModifySubmit"
:disabled="!configParams.typeScan"
>提交
</el-button>
<el-button
type="primary"
size="small"
icon="search"
@click="cancelDialog"
>取消
</el-button>
</div>
</el-dialog>
<pagination
v-show="total>0"
v-show="total > 0"
:total="total"
:limit.sync="filterQuery.limit"
:page.sync="filterQuery.page"
@ -169,12 +214,18 @@
</div>
</template>
<script>
import { getBusTypeList, deleteBusType, updateBusType, insertBusType, exportFile } from '@/api/basic/busType'
import modifyDialog from './bussinessTypeModify'
import axios from 'axios'
import store from '@/store'
import { findConfig } from '@/api/sync/spsSyncStatus'
import { isBlank } from '@/utils/strUtil'
import {
getBusTypeList,
deleteBusType,
updateBusType,
insertBusType,
exportFile,
} from "@/api/basic/busType";
import modifyDialog from "./bussinessTypeModify";
import axios from "axios";
import store from "@/store";
import { findConfig } from "@/api/sync/spsSyncStatus";
import { isBlank } from "@/utils/strUtil";
export default {
data() {
@ -182,22 +233,22 @@ export default {
filterQuery: {
name: null,
mainAction: null,
enable: '1',
enable: "1",
page: 1,
limit: 20
limit: 20,
},
showSearch:true,
showSearch: true,
addDialogVisible: false,
modifyDialogVisible: false,
list: [],
inputQuery: {
action: '',
name: '',
action: "",
name: "",
enable: null,
remark: '',
mainAction: '',
thirdSysFk: '',
id: '',
remark: "",
mainAction: "",
thirdSysFk: "",
id: "",
checkEnable: false,
genUnit: false,
innerOrder: false,
@ -259,17 +310,16 @@ export default {
thrCheckCopy: null,
advancePreIn: false,
checkVailDate: 0, //
checkExpire: true, //
checkCertExpire: false //
checkExpire: true, //
checkCertExpire: false, //
},
enableMap: {
true: '是',
false: '否'
true: "是",
false: "否",
},
mainActionMap: {
WareHouseIn: '入库',
WareHouseOut: '出库'
WareHouseIn: "入库",
WareHouseOut: "出库",
},
fileList: [],
total: 0,
@ -277,96 +327,99 @@ export default {
uploadFileUrl: null,
headers: {},
configParams: {},
loading: false
}
loading: false,
};
},
methods: {
onReset() {
this.$router.push({
path: ''
})
path: "",
});
this.filterQuery = {
name: null,
mainAction: null,
enable: '1',
enable: "1",
page: 1,
limit: 20
}
this.getList()
limit: 20,
};
this.getList();
},
cancelDialog() {
this.modifyDialogVisible = false
this.addDialogVisible = false
this.getList()
this.modifyDialogVisible = false;
this.addDialogVisible = false;
this.getList();
},
search() {
this.filterQuery.page = 1
this.getList()
this.filterQuery.page = 1;
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
getList() {
this.loading = true
this.loading = true;
getBusTypeList(this.filterQuery)
.then((response) => {
console.log("this.filterQuery", this.filterQuery);
console.log("response", response);
if (response.code === 20000) {
this.list = response.data.list || []
this.total = response.data.total || 0
this.list = response.data.list || [];
this.total = response.data.total || 0;
} else {
this.$message.error(response.message)
this.$message.error(response.message);
}
this.loading = false
this.loading = false;
})
.catch(() => {
this.loading = false
this.list = []
this.total = 0
})
this.loading = false;
this.list = [];
this.total = 0;
});
},
handleCurrentChange(val) {
this.filterQuery.page = val
this.getList()
this.filterQuery.page = val;
this.getList();
},
onAddSubmit() {
//
if (this.inputQuery.corpType == null) {
this.inputQuery.corpType = 2
this.inputQuery.corpType = 2;
}
if (isBlank(this.inputQuery.name)) {
this.$message.error('单据类型名称不能为空!')
return
this.$message.error("单据类型名称不能为空!");
return;
}
if (this.inputQuery.mainAction == '' || this.inputQuery.mainAction == null) {
this.$message.error('出入库类型不能为空!')
return
if (
this.inputQuery.mainAction == "" ||
this.inputQuery.mainAction == null
) {
this.$message.error("出入库类型不能为空!");
return;
}
if (isBlank(this.inputQuery.name)) {
this.$message.error('单据类型名称不能为空!')
return
this.$message.error("单据类型名称不能为空!");
return;
}
// if (isBlank(this.inputQuery.actionType)) {
// this.$message.error("");
// return;
// }
if (isBlank(this.inputQuery.inStock)) {
this.$message.error('请选择是否更改库存!')
return
this.$message.error("请选择是否更改库存!");
return;
}
if (this.inputQuery.preInBack == 1) {
if (isBlank(this.inputQuery.backPreinType)) {
this.$message.error('请选择预验收剩余库存退库方式!')
return
this.$message.error("请选择预验收剩余库存退库方式!");
return;
}
if (isBlank(this.inputQuery.preInBackAction)) {
this.$message.error('请选择预验收退库单据类型!')
return
this.$message.error("请选择预验收退库单据类型!");
return;
}
}
// if (isBlank(this.inputQuery.busType)) {
// this.$message.error("");
@ -375,39 +428,41 @@ export default {
insertBusType(this.inputQuery)
.then((response) => {
if (response.code == 20000) {
this.loading = false
this.cancelDialog()
this.getList()
this.loading = false;
this.cancelDialog();
this.getList();
} else {
this.$message.error(response.message)
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false
})
this.loading = false;
});
},
onModifySubmit() {
if (isBlank(this.inputQuery.name)) {
this.$message.error('单据类型名称不能为空!')
return
this.$message.error("单据类型名称不能为空!");
return;
}
if (this.inputQuery.mainAction == '' || this.inputQuery.mainAction == null) {
this.$message.error('出入库类型不能为空!')
return
if (
this.inputQuery.mainAction == "" ||
this.inputQuery.mainAction == null
) {
this.$message.error("出入库类型不能为空!");
return;
}
if (isBlank(this.inputQuery.name)) {
this.$message.error('单据类型名称不能为空!')
return
this.$message.error("单据类型名称不能为空!");
return;
}
// if (isBlank(this.inputQuery.actionType)) {
// this.$message.error("");
// return;
// }
if (isBlank(this.inputQuery.inStock)) {
this.$message.error('请选择是否更改库存!')
return
this.$message.error("请选择是否更改库存!");
return;
}
// if (isBlank(this.inputQuery.busType)) {
// this.$message.error("");
@ -417,48 +472,50 @@ export default {
updateBusType(this.inputQuery)
.then((response) => {
if (response.code == 20000) {
this.loading = false
this.cancelDialog()
this.getList()
this.loading = false;
this.cancelDialog();
this.getList();
} else {
this.$message.error(response.message)
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false
this.cancelDialog()
})
this.loading = false;
this.cancelDialog();
});
},
exportJsonFile() {
exportFile().then((response) => {
const binaryData = []
binaryData.push(response)
let url = window.URL.createObjectURL(
new Blob(binaryData, { type: 'application/json' })
)
this.loading = false
const eleLink = document.createElement('a')
// var timestamp = "yyyy-MM-dd_hh:mm";
eleLink.download = '扫码单据类型导出' + '.json'
eleLink.style.display = 'none'
eleLink.href = url
document.body.appendChild(eleLink)
eleLink.click()
document.body.removeChild(eleLink)
}).catch(() => {
this.loading = false
})
exportFile()
.then((response) => {
const binaryData = [];
binaryData.push(response);
let url = window.URL.createObjectURL(
new Blob(binaryData, { type: "application/json" })
);
this.loading = false;
const eleLink = document.createElement("a");
// var timestamp = "yyyy-MM-dd_hh:mm";
eleLink.download = "扫码单据类型导出" + ".json";
eleLink.style.display = "none";
eleLink.href = url;
document.body.appendChild(eleLink);
eleLink.click();
document.body.removeChild(eleLink);
})
.catch(() => {
this.loading = false;
});
},
handleAddClick() {
this.inputQuery = {
action: '',
name: '',
action: "",
name: "",
enable: true,
remark: '',
mainAction: 'WareHouseIn',
thirdSysFk: '',
id: '',
remark: "",
mainAction: "WareHouseIn",
thirdSysFk: "",
id: "",
checkEnable: false,
genUnit: false,
innerOrder: false,
@ -520,90 +577,86 @@ export default {
thrCheckCopy: null,
advancePreIn: false,
checkVailDate: 0, //
checkExpire: 2, //
checkExpire: 2, //
checkCertExpire: 0, //
backPreinType: 1,
sortNum: 999
}
this.addDialogVisible = true
sortNum: 999,
};
this.addDialogVisible = true;
},
handleModifyClick(row) {
this.inputQuery = row
this.modifyDialogVisible = true
this.inputQuery = row;
this.modifyDialogVisible = true;
},
deleteDialog(rowId) {
this.$confirm('此操作将永久删除该扫码类型信息, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
this.$confirm("此操作将永久删除该扫码类型信息, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.deleteOrders(rowId)
})
.catch(() => {
this.deleteOrders(rowId);
})
.catch(() => {});
},
deleteOrders(data) {
this.loading = true
this.loading = true;
let tquery = {
id: data.id + ''
}
id: data.id + "",
};
deleteBusType(tquery)
.then((response) => {
this.getList()
this.getList();
if (response.code == 20000) {
this.$message({
type: 'success',
message: '删除成功!'
})
type: "success",
message: "删除成功!",
});
} else {
this.$message.error(response.message)
this.$message.error(response.message);
}
})
.catch(() => {
})
.catch(() => {});
},
handleChange(response, files, fileList) {
if (response.code != 20000) {
this.$message.error(response.message)
this.$message.error(response.message);
} else {
this.$message.success(response.data)
this.getList()
this.$message.success(response.data);
this.getList();
}
},
init() {
this.uploadFileUrl = process.env.VUE_APP_BASE_API + '/udiwms/bussinessType/file/upload'
this.uploadFileUrl =
process.env.VUE_APP_BASE_API + "/udiwms/bussinessType/file/upload";
this.headers = {
ADMIN_ID: store.getters.adminId,
ADMIN_TOKEN: store.getters.token
}
ADMIN_TOKEN: store.getters.token,
};
},
getSyncConfig() {
findConfig()
.then((response) => {
if (response.code == 20000) {
this.configParams = response.data
this.configParams = response.data;
}
})
.catch(() => {
})
}
.catch(() => {});
},
},
components: {
modifyDialog
},
mounted() {
modifyDialog,
},
mounted() {},
created() {
this.init()
this.getSyncConfig()
this.getList()
}
}
this.init();
this.getSyncConfig();
this.getList();
},
};
</script>
<style scoped>

@ -1,22 +1,40 @@
<template>
<!-- 首营品种资质 -->
<div>
<!---生产企业资质----->
<el-card>
<el-form :model="filterQuery" class="query-form" label-width="100px" v-show="showSearch">
<el-form
:model="filterQuery"
class="query-form"
label-width="100px"
v-show="showSearch"
>
<el-row>
<el-col span="6">
<el-form-item label="企业名称:">
<el-input v-model="filterQuery.companyName" style="width: 90%" placeholder="请输入企业名称"></el-input>
<el-input
v-model="filterQuery.companyName"
style="width: 90%"
placeholder="请输入企业名称"
></el-input>
</el-form-item>
</el-col>
<el-col span="6">
<el-form-item label="社会信用号:">
<el-input v-model="filterQuery.creditCode" style="width: 90%" placeholder="请输入社会信用号"></el-input>
<el-input
v-model="filterQuery.creditCode"
style="width: 90%"
placeholder="请输入社会信用号"
></el-input>
</el-form-item>
</el-col>
<el-col span="6">
<el-form-item label="处理状态:">
<el-select v-model="filterQuery.auditStatus" style="width: 90%" placeholder="请输入处理状态">
<el-select
v-model="filterQuery.auditStatus"
style="width: 90%"
placeholder="请输入处理状态"
>
<el-option label="全部" value=""></el-option>
<el-option label="草稿" value="0"></el-option>
<el-option label="未审核" value="6"></el-option>
@ -30,21 +48,38 @@
</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="onSubmit"></el-button>
<el-button type="primary" icon="el-icon-plus" @click="addInfoDialog()"></el-button>
<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="onSubmit"
>查询</el-button
>
<el-button type="primary" icon="el-icon-plus" @click="addInfoDialog()"
>添加</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
@current-change="supManufacturerClick">
<el-table
v-loading="loading"
:data="list"
style="width: 100%"
border
highlight-current-row
@current-change="supManufacturerClick"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="企业名称" prop="companyName" width="250"></el-table-column>
<el-table-column
label="企业名称"
prop="companyName"
width="250"
></el-table-column>
<el-table-column label="社会信用号" prop="creditCode"></el-table-column>
<el-table-column label="企业类型" prop="bussinessStatus" width="120">
<template slot-scope="scope">
@ -52,11 +87,19 @@
</template>
</el-table-column>
<el-table-column label="所在地区" prop="placeArea"></el-table-column>
<el-table-column label="所在地址" prop="placeAddress" :show-overflow-tooltip="true"></el-table-column>
<el-table-column label="所属供应商" prop="supName" show-overflow-tooltip></el-table-column>
<el-table-column
label="所在地址"
prop="placeAddress"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="所属供应商"
prop="supName"
show-overflow-tooltip
></el-table-column>
<el-table-column label="审核状态" prop="auditStatus" width="120">
<template slot-scope="scope">
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
<el-tag :type="scope.row.auditStatus | statusFilterType">
{{ checkFlag[scope.row.auditStatus] }}
</el-tag>
</template>
@ -64,20 +107,32 @@
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native.stop="addInfoDialog(scope.row)">编辑</el-button>
<el-button type="text" size="small" :disabled="scope.row.auditStatus === 1"
@click.native.stop="deleteDialog(scope.row)">删除
<el-button
type="text"
size="small"
@click.native.stop="addInfoDialog(scope.row)"
>编辑</el-button
>
<el-button
type="text"
size="small"
:disabled="scope.row.auditStatus === 1"
@click.native.stop="deleteDialog(scope.row)"
>删除
</el-button>
<el-button type="text" size="small" v-if="scope.row.auditStatus === 2"
@click.native.stop="rejectInfo(scope.row)">说明
<el-button
type="text"
size="small"
v-if="scope.row.auditStatus === 2"
@click.native.stop="rejectInfo(scope.row)"
>说明
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
v-show="total > 0"
:total="total"
:page.sync="filterQuery.page"
:limit.sync="filterQuery.limit"
@ -91,7 +146,7 @@
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="addInfoVisible"
@close='closeDialog'
@close="closeDialog"
>
<suppliersEnterpriseBasicAdd
:addCloseDialog="closeDialog"
@ -100,83 +155,139 @@
:fromType="fromType"
></suppliersEnterpriseBasicAdd>
</el-dialog>
</el-card>
<!---配送企业资质----->
<el-card class="el-card">
<el-form :model="registrationQuery" class="query-form" style="margin-top: 5px" v-show="showSearch2"
label-width="100px">
<el-form
:model="registrationQuery"
class="query-form"
style="margin-top: 5px"
v-show="showSearch2"
label-width="100px"
>
<el-row>
<el-col span="6">
<el-form-item label="物资名称:">
<el-input v-model="registrationQuery.recordProductName" style="width: 90%" clearable
placeholder="物资名称"></el-input>
<el-input
v-model="registrationQuery.recordProductName"
style="width: 90%"
clearable
placeholder="物资名称"
></el-input>
</el-form-item>
</el-col>
<el-col span="6">
<el-form-item label="注册备案号:">
<el-input v-model="registrationQuery.recordCode" style="width: 90%" clearable
placeholder="注册备案号"></el-input>
<el-input
v-model="registrationQuery.recordCode"
style="width: 90%"
clearable
placeholder="注册备案号"
></el-input>
</el-form-item>
</el-col>
<el-col span="6">
<el-form-item label="注册备案人:">
<el-input v-model="registrationQuery.recordPeopleName" style="width: 90%" clearable
placeholder="注册备案人"></el-input>
<el-input
v-model="registrationQuery.recordPeopleName"
style="width: 90%"
clearable
placeholder="注册备案人"
></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="hideSearch2">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset2"></el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit2"></el-button>
<el-button type="primary" icon="el-icon-plus" @click="registrationDialog()"></el-button>
<el-button-group style="display: flex">
<el-button icon="el-icon-view" type="primary" @click="hideSearch2"
>显示/隐藏搜索栏</el-button
>
<el-button type="primary" icon="el-icon-refresh" @click="onReset2"
>重置</el-button
>
<el-button type="primary" icon="el-icon-search" @click="onSubmit2"
>查询</el-button
>
<el-button
type="primary"
icon="el-icon-plus"
@click="registrationDialog()"
>添加</el-button
>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="registrationLoading" :data="registrationList" style="width: 100%" border
highlight-current-row>
<el-table
v-loading="registrationLoading"
:data="registrationList"
style="width: 100%"
border
highlight-current-row
>
<el-table-column type="index" label="序号" width="50"></el-table-column>
<el-table-column label="注册/备案产品名称" prop="recordProductName" show-overflow-tooltip></el-table-column>
<el-table-column label="注册/备案号" prop="recordCode" show-overflow-tooltip></el-table-column>
<el-table-column label="注册/备案人名称" prop="recordPeopleName" show-overflow-tooltip></el-table-column>
<el-table-column label="生产企业" prop="manufacturerName" show-overflow-tooltip></el-table-column>
<el-table-column label="所属供应商" prop="supName" show-overflow-tooltip></el-table-column>
<el-table-column
label="注册/备案产品名称"
prop="recordProductName"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="注册/备案号"
prop="recordCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="注册/备案人名称"
prop="recordPeopleName"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="生产企业"
prop="manufacturerName"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="所属供应商"
prop="supName"
show-overflow-tooltip
></el-table-column>
<el-table-column label="审核状态" prop="auditStatus" width="120">
<template slot-scope="scope">
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
<el-tag :type="scope.row.auditStatus | statusFilterType">
{{ checkFlag[scope.row.auditStatus] }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native.stop="registrationDialog(scope.row)">编辑</el-button>
<el-button type="text" size="small" :disabled="scope.row.auditStatus === 1"
@click.native="deleteRegistration(scope.row)">删除
<el-button
type="text"
size="small"
@click.native.stop="registrationDialog(scope.row)"
>编辑</el-button
>
<el-button
type="text"
size="small"
:disabled="scope.row.auditStatus === 1"
@click.native="deleteRegistration(scope.row)"
>删除
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="certTotal>0"
v-show="certTotal > 0"
:total="certTotal"
:page.sync="registrationQuery.page"
:limit.sync="registrationQuery.limit"
@pagination="certHandleCurrentChange"
></pagination>
<el-dialog
:title="formProductMap[formName]"
:visible.sync="registrationVisible"
@ -184,7 +295,7 @@
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="registrationVisible"
@close='closeProductDialog'
@close="closeProductDialog"
>
<suppliersRegistrationBasic
:closeRegistrationDialog="closeProductDialog"
@ -194,14 +305,20 @@
></suppliersRegistrationBasic>
</el-dialog>
</el-card>
</div>
</template>
<script>
import {deleteCompany, getCompanyList, getCompanyBySup} from "../../../api/purchase/supManufacturer"
import {
deleteCompany,
getCompanyList,
getCompanyBySup,
} from "../../../api/purchase/supManufacturer";
import suppliersEnterpriseBasicAdd from "@/views/purchase/manufacturer/supManufacturerEditDialog";
import {getRegistrationList, deleteRegistration} from "../../../api/purchase/suppliersRegistrationBasic";
import {
getRegistrationList,
deleteRegistration,
} from "../../../api/purchase/suppliersRegistrationBasic";
import suppliersRegistrationBasic from "@/views/purchase/product/supProductEditDialog";
export default {
@ -224,7 +341,7 @@ export default {
total: 0,
companyTypeMap: {
1: "境内企业",
2: "境外企业"
2: "境外企业",
},
productManageTypeMap: {
1: "Ⅰ类",
@ -243,18 +360,16 @@ export default {
addInfoVisible: false,
fileUrl: "",
inputQuery: {
auditStatus: 6
auditStatus: 6,
},
editType: 1,
fromType: 1,//1:2:
fromType: 1, //1:2:
formMap: {
add: "新增生产企业资质信息",
update: "编辑生产企业资质信息",
},
currentManufacturer: null,
/**------------------配送企业资质--------------------*/
registrationVisible: false,
enterpriseId: "",
@ -266,7 +381,7 @@ export default {
recordCode: "",
recordPeopleName: "",
page: 1,
limit: 20
limit: 20,
},
registrationList: [],
certTotal: 0,
@ -280,7 +395,7 @@ export default {
limit: 10,
},
curProductQuery: {
auditStatus: 6
auditStatus: 6,
},
editProductType: 0,
formName: "add",
@ -329,10 +444,10 @@ export default {
this.registrationList = [];
},
onSubmit() {
this.filterQuery.page = 1
this.filterQuery.page = 1;
this.getList();
this.registrationList = [];
this.currentManufacturer=null;
this.currentManufacturer = null;
},
toViewRegistrationCert(row, num) {
let path = num === 1 ? row.filePath : row.instructions;
@ -340,7 +455,7 @@ export default {
},
getList() {
this.loading = true;
this.filterQuery.customerId = this.$store.getters.customerId
this.filterQuery.customerId = this.$store.getters.customerId;
getCompanyBySup(this.filterQuery)
.then((response) => {
this.loading = false;
@ -369,7 +484,7 @@ export default {
this.enterpriseId = null;
this.editType = 0;
this.inputQuery = {
auditStatus: 0
auditStatus: 0,
};
}
@ -384,7 +499,6 @@ export default {
this.registrationList = [];
},
handleSizeChange(val) {
this.filterQuery.limit = val;
this.getList();
@ -403,10 +517,7 @@ export default {
confirmButtonText: "确定",
type: "warning",
showCancelButton: false,
})
.then(() => {
});
}).then(() => {});
},
deleteDialog(row) {
@ -423,8 +534,7 @@ export default {
this.getList();
});
})
.catch(() => {
});
.catch(() => {});
},
supManufacturerClick(row) {
@ -447,7 +557,7 @@ export default {
recordPeopleName: "",
auditStatus: null,
page: 1,
limit: 20
limit: 20,
};
this.getRegistrationList();
}
@ -455,7 +565,7 @@ export default {
onSubmit2() {
if (this.currentManufacturer == null) {
this.$message.error("请先选中生产企业!");
return
return;
}
this.registrationQuery.page = 1;
this.getRegistrationList();
@ -463,14 +573,15 @@ export default {
registrationDialog(row) {
if (this.currentManufacturer == null) {
this.$message.error("请先选中生产企业!");
return
return;
}
if (this.$isNotBlank(row)) {
this.registrationId = row.id;
this.curProductQuery = row;
this.curProductQuery.cuStatus = this.currentManufacturer.auditStatus;
this.curProductQuery.manufacturerId = this.registrationQuery.manufacturerIdFk
this.curProductQuery.manufacturerId =
this.registrationQuery.manufacturerIdFk;
this.formName = "update";
this.editProductType = 1;
} else {
@ -479,7 +590,7 @@ export default {
this.curProductQuery = {
auditStatus: 0,
cuStatus: this.currentManufacturer.auditStatus,
manufacturerId: this.registrationQuery.manufacturerIdFk
manufacturerId: this.registrationQuery.manufacturerIdFk,
};
}
this.registrationVisible = true;
@ -489,31 +600,32 @@ export default {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.certLoading = true;
let tQuery = {
id: row.id,
filePath: row.filePath,
filePath2: row.instructions,
};
deleteRegistration(tQuery)
.then((response) => {
this.certLoading = false;
if (response.code === 20000) {
this.getRegistrationList();
this.$message({
type: "success",
message: "删除成功!",
});
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.certLoading = false;
});
}).catch(() => {
});
})
.then(() => {
this.certLoading = true;
let tQuery = {
id: row.id,
filePath: row.filePath,
filePath2: row.instructions,
};
deleteRegistration(tQuery)
.then((response) => {
this.certLoading = false;
if (response.code === 20000) {
this.getRegistrationList();
this.$message({
type: "success",
message: "删除成功!",
});
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.certLoading = false;
});
})
.catch(() => {});
},
closeProductDialog() {
this.registrationVisible = false;
@ -541,22 +653,20 @@ export default {
certHandleCurrentChange(val) {
this.registrationQuery.page = val.page;
this.getRegistrationList();
}
},
},
components: {
suppliersEnterpriseBasicAdd, suppliersRegistrationBasic
},
mounted() {
suppliersEnterpriseBasicAdd,
suppliersRegistrationBasic,
},
mounted() {},
created() {
this.fileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image4&name=";
this.fileUrl =
this.BASE_URL + "/udiwms/image/register/file/getImage?type=image4&name=";
this.getList();
// this.getRegistrationList();
},
}
};
</script>
<style scoped>
</style>
<style scoped></style>

@ -1,4 +1,5 @@
<template>
<!-- 本企业资质页面 -->
<div>
<el-form
:model="inputQuery"
@ -7,49 +8,58 @@
label-width="100px"
>
<el-card class="el-card">
<div>
<span>
本企业信息审核状态
<el-tag :type="(inputQuery.auditStatus) | statusFilterType">
{{ checkSupFlag[inputQuery.auditStatus] }}
</el-tag>
</span>
<span>
本企业信息审核状态
<el-tag :type="inputQuery.auditStatus | statusFilterType">
{{ checkSupFlag[inputQuery.auditStatus] }}
</el-tag>
</span>
</div>
<div style="float:right ;margin-top: -20px">
<div style="float: right; margin-top: -20px">
<el-button
type="primary"
size="mini"
icon="search"
v-if="inputQuery.auditStatus == 0"
@click="onModifySubmit(0)"
>草稿保存
</el-button
>
>草稿保存
</el-button>
<el-button
type="primary"
size="mini"
icon="search"
v-if="inputQuery.auditStatus == 0|| inputQuery.auditStatus == 6"
v-if="inputQuery.auditStatus == 0 || inputQuery.auditStatus == 6"
@click="onModifySubmit(6)"
>提交审核
</el-button
>
>提交审核
</el-button>
<el-button
type="primary"
size="mini"
icon="search"
v-if="inputQuery.auditStatus == 3|| inputQuery.auditStatus == 1|| inputQuery.auditStatus == 2"
v-if="
inputQuery.auditStatus == 3 ||
inputQuery.auditStatus == 1 ||
inputQuery.auditStatus == 2
"
@click="onModifySubmit(3)"
>提交审核
</el-button
>
>提交审核
</el-button>
</div>
<el-row :gutter="20" class="el-row" type="flex" style="margin-top: 25px">
<el-row
:gutter="20"
class="el-row"
type="flex"
style="margin-top: 25px"
>
<el-col :span="10" class="el-col">
<el-form-item label="企业名称:" label-width="150px" prop="companyName">
<el-form-item
label="企业名称:"
label-width="150px"
prop="companyName"
>
<el-input
size="small"
splaceholder="请输入内容"
@ -58,7 +68,11 @@
</el-form-item>
</el-col>
<el-col :span="10" class="el-col">
<el-form-item label="统一社会信用代码:" label-width="150px" prop="creditNum">
<el-form-item
label="统一社会信用代码:"
label-width="150px"
prop="creditNum"
>
<el-input
size="small"
splaceholder="请输入内容"
@ -75,9 +89,13 @@
size="small"
v-model="inputQuery.classes"
placeholder="企业类别"
style="width: 100%;"
style="width: 100%"
>
<el-option v-if="classesDisplay" label="医院" value="1"></el-option>
<el-option
v-if="classesDisplay"
label="医院"
value="1"
></el-option>
<el-option label="经营企业" value="2"></el-option>
</el-select>
</el-form-item>
@ -104,12 +122,16 @@
size="small"
placeholder="请输入内容"
v-model="inputQuery.contacts"
@blur="inputQuery.contacts=$event.target.value.trim()"
@blur="inputQuery.contacts = $event.target.value.trim()"
></el-input>
</el-form-item>
</el-col>
<el-col :span="10" class="el-col">
<el-form-item label="详细地址:" label-width="150px" prop="detailAddr">
<el-form-item
label="详细地址:"
label-width="150px"
prop="detailAddr"
>
<el-input
size="small"
placeholder="请输入内容"
@ -140,48 +162,76 @@
</el-col>
</el-row>
<el-row :gutter="20" v-show="inputQuery.auditStatus==2" class="el-row" type="flex" style="margin-top: 0px">
<el-row
:gutter="20"
v-show="inputQuery.auditStatus == 2"
class="el-row"
type="flex"
style="margin-top: 0px"
>
<el-col :span="10" class="el-col">
<el-form-item label="结果说明:" label-width="150px" prop="mobile">
<el-input size="small" v-model="inputQuery.auditComment" disabled></el-input>
<el-input
size="small"
v-model="inputQuery.auditComment"
disabled
></el-input>
</el-form-item>
</el-col>
</el-row>
</el-card>
<el-card>
<div style="float: right;text-align: right;margin-bottom: 8px;">
<el-button type="primary" size="mini" icon="search" @click="selectCert"
style="text-align:right"
>选入资质证书
</el-button
>
<el-button type="primary" size="mini" icon="search" @click="addCert()"
style="text-align:right"
>添加资质证书
</el-button
>
<div style="float: right; text-align: right; margin-bottom: 8px">
<el-button
type="primary"
size="mini"
icon="search"
@click="selectCert"
style="text-align: right"
>选入资质证书
</el-button>
<el-button
type="primary"
size="mini"
icon="search"
@click="addCert()"
style="text-align: right"
>添加资质证书
</el-button>
</div>
<el-table v-loading="certLoading" :data="certList" style="width: 100%" border highlight-current-row>
<el-table-column type="index" label="序号" width="50"></el-table-column>
<el-table
v-loading="certLoading"
:data="certList"
style="width: 100%"
border
highlight-current-row
>
<el-table-column
type="index"
label="序号"
width="50"
></el-table-column>
<el-table-column label="证书名称" prop="name"></el-table-column>
<el-table-column label="证书编号" prop="code"></el-table-column>
<el-table-column label="生效期" prop="vailDate"></el-table-column>
<el-table-column label="失效期" prop="expireDate"></el-table-column>
<el-table-column label="确认状态" prop="auditStatus" width="120">
<template slot-scope="scope">
<el-tag :type="(scope.row.auditStatus) | statusFilterType">
<el-tag :type="scope.row.auditStatus | statusFilterType">
{{ checkFlag[scope.row.auditStatus] }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="确认说明" prop="auditComment" show-overflow-tooltip></el-table-column>
<el-table-column
label="确认说明"
prop="auditComment"
show-overflow-tooltip
></el-table-column>
<el-table-column label="状态" prop="status" width="120">
<template slot-scope="scope">
<el-tag :type="(scope.row.status) | statusType">
<el-tag :type="scope.row.status | statusType">
{{ statusFlag[scope.row.status] }}
</el-tag>
</template>
@ -191,17 +241,48 @@
<el-table-column label="操作" width="180">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native="addCert(scope.row)">编辑</el-button>
<el-button type="text" size="small" @click.native="showImgViewer(scope.row)">预览</el-button>
<el-button type="text" size="small" v-if="scope.row.auditStatus == 0 || scope.row.auditStatus == 2|| scope.row.auditStatus == 6" @click.native="deleteCompanyCert(scope.row)"></el-button>
<el-button type="text" size="small" v-if="scope.row.auditStatus == 2" @click.native="explainCompanyCert(scope.row)"></el-button>
<el-button
type="text"
size="small"
@click.native="addCert(scope.row)"
>编辑</el-button
>
<el-button
type="text"
size="small"
@click.native="showImgViewer(scope.row)"
>预览</el-button
>
<el-button
type="text"
size="small"
v-if="
scope.row.auditStatus == 0 ||
scope.row.auditStatus == 2 ||
scope.row.auditStatus == 6
"
@click.native="deleteCompanyCert(scope.row)"
>删除</el-button
>
<el-button
type="text"
size="small"
v-if="scope.row.auditStatus == 2"
@click.native="explainCompanyCert(scope.row)"
>说明</el-button
>
</template>
</el-table-column>
</el-table>
<el-image-viewer v-if="imgViewerVisible" style="z-index:9999" :on-close="closeImgViewer" :url-list="imgList"/>
<el-image-viewer
v-if="imgViewerVisible"
style="z-index: 9999"
:on-close="closeImgViewer"
:url-list="imgList"
/>
<pagination
v-show="certTotal>0"
v-show="certTotal > 0"
:total="certTotal"
:limit.sync="certQuery.limit"
:page.sync="certQuery.page"
@ -209,7 +290,6 @@
></pagination>
</el-card>
<el-dialog
:title="formMap[formName]"
:visible.sync="addCertVisible"
@ -218,7 +298,7 @@
width="60%"
v-if="addCertVisible"
append-to-body
@close='closeLocalDialog'
@close="closeLocalDialog"
>
<companyAddCert
:closeDialog="closeLocalDialog"
@ -228,7 +308,6 @@
></companyAddCert>
</el-dialog>
<el-dialog
title="选入资质证书"
:visible.sync="selectCertVisible"
@ -237,7 +316,7 @@
width="60%"
v-if="selectCertVisible"
append-to-body
@close='closeLocalDialog'
@close="closeLocalDialog"
>
<supCertSetSelectDialog
:certType="certType"
@ -257,34 +336,39 @@
>
<el-form-item label="拒绝原因:"><el-input v-model="explainMsg" placeholder="请输入内容"></el-input></el-form-item>
</el-dialog> -->
</el-form>
</div>
</template>
<script>
import {modifyCompany, addCompany, getSubCompany} from "@/api/supplier/supCompany";
import {
modifyCompany,
addCompany,
getSubCompany,
} from "@/api/supplier/supCompany";
import store from "@/store/index";
import {regionDataPlus, CodeToText,} from "element-china-area-data";
import {filterCompanyCert, deleteCompanyCert, updateCompanyCert} from "@/api/purchase/companyCert";
import { regionDataPlus, CodeToText } from "element-china-area-data";
import {
filterCompanyCert,
deleteCompanyCert,
updateCompanyCert,
} from "@/api/purchase/companyCert";
import companyAddCert from "@/views/purchase/cert/supCertAddDialog";
import supCertSetSelectDialog from "@/views/purchase/cert/supCertSetSelectDialog";
import draggable from "vuedraggable";
import {getCompany} from "@/api/supplier/company";
import { previewImage } from '@/api/purchase/supCompany';
import { getCompany } from "@/api/supplier/company";
import { previewImage } from "@/api/purchase/supCompany";
import ElImageViewer from "element-ui/packages/image/src/image-viewer";
export default {
name: "supCompanyEdit",
data() {
return {
BASE_URL: process.env.VUE_APP_BASE_API,
inputQuery: {},
headers: {},
imgViewerVisible:false,
imgList:[],
imgViewerVisible: false,
imgList: [],
classesDisplay: false,
selectedOptions: [],
options: regionDataPlus,
@ -293,74 +377,74 @@ export default {
{
required: true,
message: "请输入企业名称",
trigger: "blur"
}
trigger: "blur",
},
],
creditNum: [
{
required: true,
message: "请输入统一社会信用代码",
trigger: "blur"
}
trigger: "blur",
},
],
classes: [
{
required: true,
message: "请选择企业类别",
trigger: "change"
}
trigger: "change",
},
],
area: [
{
required: true,
message: "请选择所属地区",
trigger: "change"
}
trigger: "change",
},
],
detailAddr: [
{
required: true,
message: "请输入详细地址",
trigger: "change"
}
trigger: "change",
},
],
contacts: [
{
required: true,
message: "请输入联系人",
trigger: "change"
}
trigger: "change",
},
],
mobile: [
{
required: true,
message: "请输入联系电话",
trigger: "change"
}
trigger: "change",
},
],
email: [
{
required: true,
message: "请输入邮箱",
trigger: "change"
}
trigger: "change",
},
],
updateCause: [
{
required: true,
message: "请输入变更原因",
trigger: "change"
}
trigger: "change",
},
],
},
uploadUrl: "",
fileUrl: "",
certFileUrl: "",
url: 'http://127.0.0.1:9996/udiwms/image/register/file/getImage?type=image1&name=t11111.jpg',
url: "http://127.0.0.1:9996/udiwms/image/register/file/getImage?type=image1&name=t11111.jpg",
certQuery: {
type: 1,
page: 1,
limit: 20
limit: 20,
},
certList: [],
certTotal: 0,
@ -370,14 +454,14 @@ export default {
salesmanQuery: {
name: "",
page: 1,
limit: 20
limit: 20,
},
salesmanList: [],
salesmanTotal: 0,
salesmanLoading: false,
addSalesmanVisible: false,
certTypeMap: {
1: '身份证'
1: "身份证",
},
selectLocalVisible: false,
productQuery: {
@ -385,7 +469,7 @@ export default {
cpmctymc: "",
ggxh: "",
page: 1,
limit: 20
limit: 20,
},
productList: [],
productTotal: 0,
@ -393,7 +477,7 @@ export default {
uuid: null,
companyApplyUpdateVisible: false,
explainCertVisible: false,
explainMsg: '',
explainMsg: "",
companyEditDisabled: true,
companyEditButtonStr: "编辑",
addType: "1", //1:2.3.
@ -432,13 +516,16 @@ export default {
};
},
components: {
draggable, companyAddCert, supCertSetSelectDialog, ElImageViewer
draggable,
companyAddCert,
supCertSetSelectDialog,
ElImageViewer,
},
methods: {
getCompanyInfo() {
let query = {
customerId: this.$store.getters.customerId
}
customerId: this.$store.getters.customerId,
};
getCompany(query)
.then((response) => {
this.inputQuery = response.data;
@ -448,40 +535,42 @@ export default {
this.getCompanyCertList();
this.selectedOptions = this.inputQuery.areaCode.split(",");
})
.catch(() => {
});
.catch(() => {});
},
onModifySubmit(val) {
var status = this.inputQuery.auditStatus;
if (this.editType == 0) { //
if (this.editType == 0) {
//
this.$refs["inputQuery"].validate(valid => {
this.$refs["inputQuery"].validate((valid) => {
if (valid) {
this.$confirm("是否确定提交保存?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.loading = true;
this.inputQuery.auditStatus = val;
addCompany(this.inputQuery).then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("提交成功");
this.closeDialog();
} else {
this.$message.error(response.message);
this.inputQuery.auditStatus = status;
}
});
}).catch(() => {
});
})
.then(() => {
this.loading = true;
this.inputQuery.auditStatus = val;
addCompany(this.inputQuery).then((response) => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("提交成功");
this.closeDialog();
} else {
this.$message.error(response.message);
this.inputQuery.auditStatus = status;
}
});
})
.catch(() => {});
} else {
return false;
}
});
} else { //
} else {
//
if (val == 0) {
var str = "是否确定草稿保存?";
} else if (val == 6) {
@ -489,27 +578,28 @@ export default {
} else {
var str = "企业信息已通过审核,是否确认重新提交审核?";
}
this.$refs["inputQuery"].validate(valid => {
this.$refs["inputQuery"].validate((valid) => {
if (valid) {
this.$confirm(str, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.loading = true;
this.inputQuery.auditStatus = val;
modifyCompany(this.inputQuery).then(response => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("提交成功");
this.closeDialog();
} else {
this.$message.error(response.message);
this.inputQuery.auditStatus = status;
}
});
}).catch(() => {
});
})
.then(() => {
this.loading = true;
this.inputQuery.auditStatus = val;
modifyCompany(this.inputQuery).then((response) => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("提交成功");
this.closeDialog();
} else {
this.$message.error(response.message);
this.inputQuery.auditStatus = status;
}
});
})
.catch(() => {});
} else {
return false;
}
@ -517,13 +607,11 @@ export default {
}
},
onAuditSubmit() {
},
onAuditSubmit() {},
disableCert(row, status) {
row.status = status;
updateCompanyCert(row).then(response => {
updateCompanyCert(row).then((response) => {
this.loading = false;
if (response.code === 20000) {
this.$message.success("更新成功!");
@ -532,27 +620,35 @@ export default {
this.$message.error(response.message);
}
});
},
showImgViewer(row){
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
this.imgList=[];
previewImage({imageUrl:row.filePath,certFileUrl:this.certFileUrl}).then(response => {
if (response.code === 20000) {
this.imgList=response.data;
}
console.log(this.imgList)
this.imgViewerVisible = true;
});
const m = (e) => { e.preventDefault() };
document.body.style.overflow = 'hidden';
document.addEventListener("touchmove", m, false); //
showImgViewer(row) {
this.certFileUrl =
this.BASE_URL +
"/udiwms/image/register/file/getImage?type=image2&name=";
this.imgList = [];
previewImage({
imageUrl: row.filePath,
certFileUrl: this.certFileUrl,
}).then((response) => {
if (response.code === 20000) {
this.imgList = response.data;
}
console.log(this.imgList);
this.imgViewerVisible = true;
});
const m = (e) => {
e.preventDefault();
};
document.body.style.overflow = "hidden";
document.addEventListener("touchmove", m, false); //
},
closeImgViewer(){
closeImgViewer() {
this.imgViewerVisible = false;
const m = (e) => { e.preventDefault() };
document.body.style.overflow = 'auto';
const m = (e) => {
e.preventDefault();
};
document.body.style.overflow = "auto";
document.removeEventListener("touchmove", m, true);
},
@ -575,7 +671,7 @@ export default {
addCert(row) {
if (this.$isNotBlank(row)) {
this.formName = 2
this.formName = 2;
this.inputQuery.formData = row;
this.editTye = 2;
} else {
@ -591,7 +687,9 @@ export default {
},
toViewCompanyCert(row) {
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
this.certFileUrl =
this.BASE_URL +
"/udiwms/image/register/file/getImage?type=image2&name=";
window.open(this.certFileUrl + row.filePath);
},
@ -605,7 +703,6 @@ export default {
this.certQuery.customerId = this.inputQuery.customerId;
filterCompanyCert(this.certQuery)
.then((response) => {
this.certLoading = false;
this.certList = response.data.list || [];
this.certTotal = response.data.total;
@ -620,42 +717,39 @@ export default {
confirmButtonText: "确定",
type: "warning",
showCancelButton: false,
}).then(() => {
});
}).then(() => {});
},
deleteCompanyCert(row) {
this.$confirm("是否删除?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.certLoading = true;
let tquery = {
id: row.id,
filePath: row.filePath,
};
deleteCompanyCert(tquery)
.then((response) => {
this.certLoading = false;
if (response.code === 20000) {
this.getCompanyCertList();
this.$message({
type: "success",
message: "删除成功!",
});
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.certLoading = false;
});
}).catch(() => {
});
})
.then(() => {
this.certLoading = true;
let tquery = {
id: row.id,
filePath: row.filePath,
};
deleteCompanyCert(tquery)
.then((response) => {
this.certLoading = false;
if (response.code === 20000) {
this.getCompanyCertList();
this.$message({
type: "success",
message: "删除成功!",
});
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.certLoading = false;
});
})
.catch(() => {});
},
},
filters: {
statusFilterType(status) {
@ -669,7 +763,6 @@ export default {
return statusMap[status];
},
statusType(status) {
const statusMap = {
0: "success",
@ -677,8 +770,6 @@ export default {
};
return statusMap[status];
},
},
};
</script>

@ -1,38 +1,59 @@
<template>
<!-- 物资入院申请 -->
<div>
<el-card class="el-card">
<el-form :model="filterQuery" label-width="100px" v-show="showSearch">
<el-row>
<el-col :span="8">
<el-form-item label="DI产品标识:">
<el-input v-model="filterQuery.code" style="width: 90%" placeholder="请输入DI产品标识" clearable
@keyup.enter.native="keyupErp_submit($event)"
<el-input
v-model="filterQuery.code"
style="width: 90%"
placeholder="请输入DI产品标识"
clearable
@keyup.enter.native="keyupErp_submit($event)"
></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="物资名称:">
<el-input v-model="filterQuery.name" style="width: 90%" clearable placeholder="请输入物资名称"></el-input>
<el-input
v-model="filterQuery.name"
style="width: 90%"
clearable
placeholder="请输入物资名称"
></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="规格型号:">
<el-input v-model="filterQuery.spec" style="width: 90%" clearable placeholder="请输入规格型号"></el-input>
<el-input
v-model="filterQuery.spec"
style="width: 90%"
clearable
placeholder="请输入规格型号"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<el-form-item label="注册证编号:">
<el-input v-model="filterQuery.registerNo" style="width: 90%" clearable
placeholder="请输入注册证编号"></el-input>
<el-input
v-model="filterQuery.registerNo"
style="width: 90%"
clearable
placeholder="请输入注册证编号"
></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="审核状态:">
<el-select v-model="filterQuery.checkStatus" style="width: 90%" placeholder="请选择审核状态">
<el-select
v-model="filterQuery.checkStatus"
style="width: 90%"
placeholder="请选择审核状态"
>
<el-option label="全部" value=""></el-option>
<el-option label="已审核" value="2"></el-option>
<el-option label="未审核" value="1"></el-option>
@ -43,25 +64,66 @@
</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="addDiProductVisible=true">DI</el-button>
<el-button type="primary" icon="el-icon-plus" @click="addProductVisible=true"></el-button>
<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="addDiProductVisible = true"
>选入DI信息</el-button
>
<el-button
type="primary"
icon="el-icon-plus"
@click="addProductVisible = true"
>添加院内字典</el-button
>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table :data="list" style="width: 100%" v-loading="loading" border highlight-current-row="true">
<el-table
:data="list"
style="width: 100%"
v-loading="loading"
border
highlight-current-row="true"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="产品标识" prop="code" show-overflow-tooltip></el-table-column>
<el-table-column label="物资名称" prop="name" show-overflow-tooltip></el-table-column>
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip></el-table-column>
<el-table-column label="医疗器械注册人" prop="ylqxzcrbarmc" show-overflow-tooltip></el-table-column>
<el-table-column label="注册证编号" prop="registerNo" show-overflow-tooltip></el-table-column>
<el-table-column
label="产品标识"
prop="code"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称"
prop="name"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="规格型号"
prop="spec"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="医疗器械注册人"
prop="ylqxzcrbarmc"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="注册证编号"
prop="registerNo"
show-overflow-tooltip
></el-table-column>
<el-table-column label="审核状态" prop="status" show-overflow-tooltip>
<template slot-scope="scope">
<span>{{ checkMap[scope.row.status] }}</span>
@ -69,23 +131,28 @@
</el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" size="small" @click="detail(scope.row)"></el-button>
<el-button type="text" size="small" :disabled="scope.row.status ==2" @click="deleteProduct(scope.row.id)">
<el-button type="text" size="small" @click="detail(scope.row)"
>详情</el-button
>
<el-button
type="text"
size="small"
:disabled="scope.row.status == 2"
@click="deleteProduct(scope.row.id)"
>
删除
</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
v-show="total > 0"
:total="total"
:limit.sync="filterQuery.limit"
:page.sync="filterQuery.page"
@pagination="handleCurrentChange"
></pagination>
</el-card>
<el-dialog
@ -133,10 +200,7 @@
append-to-body
v-if="detailDialog"
>
<selectDiDetail
:editQuery="diDetails"
:remark="delect.remark"
>
<selectDiDetail :editQuery="diDetails" :remark="delect.remark">
</selectDiDetail>
</el-dialog>
@ -148,20 +212,20 @@
width="80%"
v-if="thrProductsDetailVisible"
>
<thrProductsDetail
:data="thisDetail"
></thrProductsDetail>
<thrProductsDetail :data="thisDetail"></thrProductsDetail>
</el-dialog>
</div>
</template>
<script>
import {getThrDiProducts, delThrDiProducts, getDiProductDetail} from '@/api/supplier/supProductsAddDi'
import thrAddDiProductSelectUdi from '@/views/supplier/products/supAddDiProductSelectUdi'
import thrAddProductSelectUdi from '@/views/supplier/products/supProductsAdd'
import selectDiDetail from './selectDIDetailDialog'
import thrProductsDetail from '@/views/supplier/products/supProductsDetail'
import {
getThrDiProducts,
delThrDiProducts,
getDiProductDetail,
} from "@/api/supplier/supProductsAddDi";
import thrAddDiProductSelectUdi from "@/views/supplier/products/supAddDiProductSelectUdi";
import thrAddProductSelectUdi from "@/views/supplier/products/supProductsAdd";
import selectDiDetail from "./selectDIDetailDialog";
import thrProductsDetail from "@/views/supplier/products/supProductsDetail";
export default {
data() {
@ -176,11 +240,11 @@ export default {
manufactory: null,
checkStatus: null,
page: 1,
limit: 20
limit: 20,
},
total: 0,
thirdSys: [],
delect:null,
delect: null,
thirdSysDetail: null,
list: [],
addDiProductVisible: false,
@ -193,25 +257,25 @@ export default {
thisData: {
nameCode: null,
cpmctymc: null,
ggxh: null
ggxh: null,
},
loading: false,
checkMap: {
1: '未审核',
2: '已审核',
3: '未通过'
1: "未审核",
2: "已审核",
3: "未通过",
},
curRow: null,
diDetails: null,
detailDialog: false
}
detailDialog: false,
};
},
methods: {
onReset() {
this.$router.push({
path: ''
})
path: "",
});
this.filterQuery = {
code: null,
spec: null,
@ -220,55 +284,55 @@ export default {
checkStatus: null,
name: null,
page: 1,
limit: 20
}
this.getList()
limit: 20,
};
this.getList();
},
search() {
this.filterQuery.page = 1
this.getList()
this.filterQuery.page = 1;
this.getList();
},
checDialog(row) {
this.checkVisible = true
this.curRow = row
this.checkVisible = true;
this.curRow = row;
},
hideSearch() {
this.showSearch = !this.showSearch;
},
getList() {
this.loading = true
this.loading = true;
getThrDiProducts(this.filterQuery)
.then((response) => {
if (response.code == 20000) {
this.list = response.data.list || []
this.total = response.data.total || 0
this.list = response.data.list || [];
this.total = response.data.total || 0;
} else {
this.$message.error(response.message)
this.$message.error(response.message);
}
this.loading = false
this.loading = false;
})
.catch(() => {
this.loading = false
this.list = []
this.total = 0
})
this.loading = false;
this.list = [];
this.total = 0;
});
},
handleCurrentChange(val) {
this.filterQuery.page = val.page
this.getList()
this.filterQuery.page = val.page;
this.getList();
},
detail(row) {
if (row.type == 1) {
let query = {uuid: row.uuid}
let query = { uuid: row.uuid };
getDiProductDetail(query).then((res) => {
if (res.code === 20000) {
this.delect=row;
this.diDetails = res.data
this.detailDialog = true
this.delect = row;
this.diDetails = res.data;
this.detailDialog = true;
} else {
this.$message.error('参数错误')
this.$message.error("参数错误");
}
})
});
} else {
this.thisDetail = row;
this.thrProductsDetailVisible = true;
@ -276,38 +340,40 @@ export default {
},
deleteProduct(id) {
let query = {
id: id
}
id: id,
};
delThrDiProducts(query).then((res) => {
if (res.code === 20000) {
this.$message.success('删除成功')
this.getList()
this.$message.success("删除成功");
this.getList();
} else {
this.$message.error('删除失败')
this.$message.error("删除失败");
}
})
});
},
closeDialog() {
this.selectErpDialogVisible = false
this.selectLocalVisible = false
this.selectVersionVisible = false
this.addProductVisible = false
this.selectErpDialogVisible = false;
this.selectLocalVisible = false;
this.selectVersionVisible = false;
this.addProductVisible = false;
this.getList();
},
closeUdi(val) {
this.addDiProductVisible = false
this.addDiProductVisible = false;
if (val) {
this.getList()
this.getList();
}
}
},
},
components: {
thrAddDiProductSelectUdi, selectDiDetail, thrAddProductSelectUdi, thrProductsDetail
},
mounted() {
thrAddDiProductSelectUdi,
selectDiDetail,
thrAddProductSelectUdi,
thrProductsDetail,
},
mounted() {},
created() {
this.getList()
}
}
this.getList();
},
};
</script>

@ -1,4 +1,5 @@
<template>
<!-- 运行参数设置 -->
<div>
<el-card class="el-card">
<el-form :inline="true" :model="query" class="query-form" size="mini">
@ -186,7 +187,7 @@ export default {
} else {
callback();
}
}else{
} else {
callback();
}
};
@ -252,6 +253,10 @@ export default {
this.loading = true;
systemParamConfigList(this.query)
.then((response) => {
console.log("response", response);
console.log("this.query", this.query);
console.log("this.query.page", this.query.page);
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
@ -351,4 +356,3 @@ export default {
},
};
</script>

Loading…
Cancel
Save