|
|
|
@ -250,7 +250,8 @@
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table v-loading="certLoading" :data="certList" style="width: 100%;margin-top: 40px" border highlight-current-row>
|
|
|
|
|
<el-table v-loading="certLoading" :data="certList" style="width: 100%;margin-top: 40px" 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="name"></el-table-column>
|
|
|
|
@ -375,7 +376,11 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {getRegistrationInfo, addOrModifyRegistration, bindProduct} from "../../../api/purchase/suppliersRegistrationBasic";
|
|
|
|
|
import {
|
|
|
|
|
getRegistrationInfo,
|
|
|
|
|
addOrModifyRegistration,
|
|
|
|
|
bindProduct
|
|
|
|
|
} from "../../../api/purchase/suppliersRegistrationBasic";
|
|
|
|
|
import {regionDataPlus} from "element-china-area-data";
|
|
|
|
|
import draggable from "vuedraggable";
|
|
|
|
|
import {getSupComapnys} from "@/api/purchase/supCompany";
|
|
|
|
@ -434,13 +439,13 @@ export default {
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
manufacturerIdFk: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请选择生产企业",
|
|
|
|
|
trigger: "change"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
// manufacturerIdFk: [
|
|
|
|
|
// {
|
|
|
|
|
// required: true,
|
|
|
|
|
// message: "请选择生产企业",
|
|
|
|
|
// trigger: "change"
|
|
|
|
|
// }
|
|
|
|
|
// ],
|
|
|
|
|
|
|
|
|
|
recordCode: [
|
|
|
|
|
{
|
|
|
|
@ -477,13 +482,13 @@ export default {
|
|
|
|
|
trigger: "change"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
productDirectoryCode: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "请输入器械目录分类编码",
|
|
|
|
|
trigger: "change"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
// productDirectoryCode: [
|
|
|
|
|
// {
|
|
|
|
|
// required: true,
|
|
|
|
|
// message: "请输入器械目录分类编码",
|
|
|
|
|
// trigger: "change"
|
|
|
|
|
// }
|
|
|
|
|
// ],
|
|
|
|
|
specification: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
@ -565,6 +570,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let formData = JSON.parse(JSON.stringify(this.inputQuery));
|
|
|
|
|
formData.manufacturerIdFk = this.manufacturerId;
|
|
|
|
|
formData.auditStatus = val;
|
|
|
|
|
this.loading = true;
|
|
|
|
|
let urlName = this.editType == 0 ? 'add' : 'update';
|
|
|
|
|