| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636 |
- <template>
- <ele-modal
- custom-class="ele-dialog-form long-dialog-form"
- :centered="true"
- :visible.sync="certificateQualificationsDialogFlag"
- :title="title"
- append-to-body
- :close-on-click-modal="false"
- width="80%"
- :before-close="cancel"
- >
- <el-form ref="form" :model="form">
- <headerTitle title="基本信息" />
- <el-row :gutter="20">
- <el-col :span="12">
- <el-form-item
- label-width="50px"
- label="名称"
- prop="name"
- :rules="{ required: true, message: '请输入', trigger: 'blur' }"
- >
- <el-input
- v-model="form.name"
- :disabled="type == 'view'"
- clearable
- ></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="有效时间:" prop="date" label-width="90px">
- <el-date-picker
- :disabled="type == 'view'"
- v-model="form.date"
- style="width: 100%"
- type="daterange"
- value-format="yyyy-MM-dd"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item
- label="资质类型:"
- prop="certificationType"
- label-width="90px"
- >
- <el-select
- style="width: 100%"
- :disabled="type == 'view'"
- v-model="form.certificationType"
- @change="changeCertificationType"
- filterable
- >
- <el-option
- v-for="item in qualificationOptions"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item
- label="关联类型:"
- prop="relationName"
- label-width="90px"
- >
- <el-input
- :disabled="type == 'view'"
- v-model="form.relationName"
- readonly
- clearable
- @click.native="handleClick"
- placeholder="请选择"
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item
- label="关联类型:"
- prop="relationName"
- label-width="90px"
- >
- <el-input
- :disabled="type == 'view'"
- v-model="form.relationName"
- readonly
- clearable
- @click.native="handleClick"
- placeholder="请选择"
- />
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label="附件:" prop="accessory" label-width="90px">
- <fileMain v-model="form.accessory" :type="type"></fileMain>
- </el-form-item>
- </el-col>
- <el-col :span="12">
- <el-form-item label-width="50px" label="备注">
- <el-input
- type="textarea"
- v-model="form.remark"
- :disabled="type == 'view'"
- clearable
- ></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- <headerTitle title="资质信息" />
- <ele-pro-table
- ref="linkTable"
- :columns="columns"
- :datasource="form.detailsList"
- :toolkit="[]"
- height="300px"
- :need-page="false"
- >
- <!-- 表头工具栏 -->
- <template v-slot:toolbar>
- <el-button v-if="type !== 'view'" type="primary" @click="handleAdd"
- >添加</el-button
- >
- </template>
- <template v-slot:name="scope">
- <el-form-item
- :prop="'detailsList.' + scope.$index + '.name'"
- :rules="{
- required: true,
- message: '',
- trigger: 'change'
- }"
- >
- <el-select
- v-if="type !== 'view'"
- v-model="scope.row.name"
- clearable
- @change="(val) => handleChangeType(val, scope.row)"
- >
- <el-option
- :disabled="disabledToType(scope.row).includes(item.dictCode)"
- v-for="item in dictList"
- :value="item.dictValue"
- :label="item.dictValue"
- ></el-option>
- </el-select>
- <span v-else>{{ scope.row.name }}</span>
- </el-form-item>
- </template>
- <template v-slot:code="scope">
- <el-form-item :prop="'detailsList.' + scope.$index + '.code'">
- <el-input
- v-model="scope.row.code"
- :disabled="type == 'view'"
- clearable
- ></el-input>
- </el-form-item>
- </template>
- <template v-slot:businessRange="scope">
- <el-form-item
- :prop="'detailsList.' + scope.$index + '.businessRange'"
- >
- <el-input
- type="textarea"
- v-model="scope.row.businessRange"
- :disabled="type == 'view'"
- clearable
- ></el-input>
- </el-form-item>
- </template>
- <template v-slot:startTime="scope">
- <el-form-item
- inline-message
- :prop="'detailsList.' + scope.$index + '.startTime'"
- :rules="{
- required: false,
- message: '',
- trigger: 'change'
- }"
- >
- <el-date-picker
- :disabled="type == 'view'"
- v-model="scope.row.startTime"
- type="date"
- style="width: 100%"
- value-format="yyyy-MM-dd"
- placeholder="选择日期"
- >
- </el-date-picker>
- </el-form-item>
- </template>
- <template v-slot:endTime="scope">
- <el-form-item
- :prop="'detailsList.' + scope.$index + '.endTime'"
- :rules="{
- required: false,
- validator: validateEndDate(scope.row, scope.$index),
- trigger: ['blur', 'change']
- }"
- >
- <el-date-picker
- :disabled="type == 'view'"
- v-model="scope.row.endTime"
- type="date"
- style="width: 100%"
- value-format="yyyy-MM-dd"
- placeholder="选择日期"
- >
- </el-date-picker>
- </el-form-item>
- </template>
- <template v-slot:noticePersonName="scope">
- <el-form-item
- :prop="'detailsList.' + scope.$index + '.noticePersonName'"
- >
- <el-input
- :disabled="type == 'view'"
- @click.native="openStaffSelection(scope.$index)"
- v-model="scope.row.noticePersonName"
- placeholder="请选择"
- ></el-input>
- </el-form-item>
- </template>
- <template v-slot:accessory="scope">
- <el-form-item
- :prop="'detailsList.' + scope.$index + '.accessory'"
- :rules="{
- required: true,
- message: '',
- trigger: ['change', 'blur']
- }"
- >
- <fileMain v-model="scope.row.accessory" :type="type"></fileMain>
-
- </el-form-item>
- </template>
- <template v-slot:type="scope">
- <el-form-item :prop="'detailsList.' + scope.$index + '.type'">
- <el-select
- v-if="type !== 'view'"
- v-model="scope.row.type"
- clearable
- >
- <el-option
- v-for="item in typeList"
- :value="item.dictCode"
- :label="item.dictValue"
- ></el-option>
- </el-select>
- <span v-else>{{ getLabelName(typeList, scope.row.type) }}</span>
- </el-form-item>
- </template>
- <template v-slot:level="scope">
- <el-form-item :prop="'detailsList.' + scope.$index + '.level'">
- <el-select
- v-if="type !== 'view'"
- v-model="scope.row.level"
- clearable
- >
- <el-option
- v-for="item in levelOptions"
- :value="item.dictCode"
- :label="item.dictValue"
- ></el-option>
- </el-select>
- <span v-else>{{ getLabelName(levelOptions, scope.row.type) }}</span>
- </el-form-item>
- </template>
- <template v-slot:remark="scope">
- <el-form-item :prop="'detailsList.' + scope.$index + '.remark'">
- <el-input
- type="textarea"
- :disabled="type == 'view'"
- v-model="scope.row.remark"
- ></el-input>
- </el-form-item>
- </template>
- <template v-slot:status="scope">
- <el-form-item :prop="'detailsList.' + scope.$index + '.status'">
- <el-tag
- v-if="scope.row.status"
- :type="statusTagTypeList[scope.row.status]"
- >
- {{ statusList[scope.row.status] }}
- </el-tag>
- </el-form-item>
- </template>
- <template v-slot:isRequired="{ column }">
- <span class="is-required">{{ column.label }}</span>
- </template>
- <template v-slot:action="{ row, $index }">
- <el-popconfirm
- class="ele-action"
- title="确定要删除该信息吗?"
- @confirm="handleRemove($index)"
- >
- <template v-slot:reference>
- <el-link
- v-if="type !== 'view'"
- type="danger"
- :underline="false"
- icon="el-icon-delete"
- >
- 删除
- </el-link>
- </template>
- </el-popconfirm>
- </template>
- </ele-pro-table>
- </el-form>
- <div slot="footer">
- <el-button
- type="primary"
- v-if="type !== 'view'"
- @click="handleSave(false)"
- >保存</el-button
- >
- <!-- <el-button type="primary" v-if="type!=='view'" plan @click="handleSave(true)">提交</el-button>-->
- <el-button @click="cancel">返回</el-button>
- </div>
- <staffSelection
- ref="staffSelection"
- @confirm="confirmStaffSelection"
- ></staffSelection>
- </ele-modal>
- </template>
- <script>
- import FileUpload from '@/components/upload/fileUpload.vue';
- import staffSelection from '@/components/staffSelection/staffSelection.vue';
- import {
- contactQcPackDetailAPI,
- contactQcPackSaveAPI,
- contactQcPackUpdateAPI,
- contactQcSubmit
- } from '@/api/bpm/components/supplierManage/contact';
- import { getFile } from '@/api/system/file';
- import { mapActions, mapGetters } from 'vuex';
- import dictEnum from '@/enum/dict';
- import fileMain from '@/components/addDoc/index.vue';
- export default {
- name: 'certificateQualificationsDialog',
- components: { fileMain, FileUpload, staffSelection },
- props: {
- certificateQualificationsDialogFlag: Boolean,
- contactId: String,
- typeInfo: String
- },
- computed: {
- ...mapGetters(['dict']),
- dictList() {
- return this.dict[dictEnum['客户/供应商资质类型']] || [];
- },
- typeList() {
- return this.dict[dictEnum['工种类型']] || [];
- },
- columns() {
- return [
- {
- type: 'index',
- width: 55,
- align: 'center'
- },
- {
- label: '名称',
- prop: 'name',
- slot: 'name',
- headerSlot: 'isRequired',
- minWidth: 180,
- align: 'center'
- },
- {
- label: '编号',
- prop: 'code',
- slot: 'code',
- // headerSlot: 'isRequired',
- minWidth: 120,
- align: 'center'
- },
- {
- label: '许可/经营范围',
- prop: 'businessRange',
- slot: 'businessRange',
- minWidth: 140,
- align: 'center'
- },
- {
- label: '有效期起始日期',
- prop: 'startTime',
- slot: 'startTime',
- // headerSlot: 'isRequired',
- minWidth: 160,
- align: 'center'
- },
- {
- label: '有效期截止日期',
- prop: 'endTime',
- slot: 'endTime',
- // headerSlot: 'isRequired',
- minWidth: 160,
- align: 'center'
- },
- {
- label: '通知人',
- prop: 'noticePersonName',
- slot: 'noticePersonName',
- // headerSlot: 'isRequired',
- minWidth: 140,
- align: 'center'
- },
- {
- label: '附件',
- prop: 'accessory',
- slot: 'accessory',
- headerSlot: 'isRequired',
- minWidth: 140
- },
- {
- label: '等级',
- prop: 'level',
- slot: 'level',
- minWidth: 140,
- align: 'center'
- },
- {
- label: '分类',
- prop: 'type',
- slot: 'type',
- minWidth: 140,
- align: 'center'
- },
- {
- label: '备注',
- prop: 'remark',
- slot: 'remark',
- minWidth: 140,
- align: 'center'
- },
- {
- label: '状态',
- prop: 'status',
- slot: 'status',
- align: 'center'
- },
- {
- action: 'action',
- slot: 'action',
- label: '操作',
- align: 'center',
- fixed: 'right'
- }
- ];
- },
- disabledToType() {
- return (row) => {
- let list = this.form.detailsList.map((item) => item.type);
- let dictCodeList = this.dictList.map((item) => item.dictCode);
- let intersectionList = list.filter(
- (v) => dictCodeList.indexOf(v) > -1
- );
- intersectionList = intersectionList.filter((v) => row.type !== v);
- return intersectionList;
- };
- }
- },
- created() {
- this.requestDict('客户/供应商资质类型');
- },
- data() {
- return {
- title: '',
- type: '',
- defaultData: {
- files: [],
- name: '',
- notifyUserId: '',
- notifyUserName: '',
- num: '',
- remark: '',
- scope: '',
- type: '',
- validityPeriodEnd: '',
- validityPeriodStart: ''
- },
- qualificationOptions: [
- {
- label: '客户资质',
- value: '1'
- },
- {
- label: '供应商资质',
- value: '2'
- },
- {
- label: '个人资质',
- value: '3'
- }
- ],
- form: {
- detailsList: [],
- contactId: '',
- name: '',
- remark: ''
- },
- curIndex: null,
- statusList: {
- 10: '有效',
- 20: '无效',
- 30: '已过期'
- },
- statusTagTypeList: {
- 10: 'success',
- 20: 'info',
- 30: 'danger'
- },
- levelOptions: [
- {
- dictValue: '初级',
- dictCode: '1'
- },
- {
- dictValue: '中级',
- dictCode: '2'
- },
- {
- dictValue: '高级',
- dictCode: '3'
- }
- ]
- };
- },
- methods: {
- ...mapActions('dict', ['requestDict']),
- getLabelName(arr, id) {
- if (!id) return '';
- return arr.find((item) => item.dictCode == id)?.dictValue;
- },
- //结束日期验证
- validateEndDate(row, index) {
- return (rule, value, callback) => {
- if (!value) return callback(new Error(''));
- if (
- row.validityPeriodEnd &&
- row.validityPeriodStart &&
- value < row.validityPeriodStart
- ) {
- callback(new Error('截止日期不能小于起始日期'));
- } else {
- callback();
- }
- };
- },
- //页面初始化
- init(type, row = {}) {
- this.title =
- type == 'add' ? '新增' : type == 'update' ? '修改' : '详情';
- this.type = type;
- if (type !== 'add') {
- this.getCertificateInfo(row);
- }
- },
- async getCertificateInfo(row) {
- this.form = await contactQcPackDetailAPI(row.id);
- },
- //打开选择负责人弹窗
- openStaffSelection(index) {
- this.curIndex = index;
- this.$refs.staffSelection.open([]);
- },
- //选择负责人回调
- confirmStaffSelection(data) {
- this.form.detailsList[this.curIndex].notifyUserName = data
- .map((item) => item.name)
- .toString();
- this.form.detailsList[this.curIndex].notifyUserId = data
- .map((item) => item.id)
- .toString();
- },
- //删除资质
- handleRemove(index) {
- this.form.detailsList.splice(index, 1);
- },
- //新增
- handleAdd() {
- this.form.detailsList.push({ ...this.defaultData });
- },
- //修改资质证书
- handleChangeType(val, row) {
- if (!val) return (row.name = '');
- row.name =
- this.dictList.find((i) => i.dictCode == val)?.dictValue || '';
- },
- downloadFile(file) {
- getFile({ objectName: file.storePath }, file.name);
- },
- //保存/提交
- handleSave(isSub) {
- if (!this.contactId)
- return this.$message.success('请保存合同信息后新增资质');
- this.$refs.form.validate(async (valid) => {
- if (!valid) return this.$message.warning('有必填项未填写,请检查');
- if (!this.form.detailsList.length)
- return this.$message.warning('至少保存一条资质信息');
- this.form.contactId = this.contactId;
- let api =
- this.type == 'add' ? contactQcPackSaveAPI : contactQcPackUpdateAPI;
- let id = await api(this.form);
- if (isSub) {
- await contactQcSubmit({ businessId: id, type: this.typeInfo });
- }
- this.$message.success('保存成功');
- this.$emit('reload');
- this.cancel();
- });
- },
- //关闭弹窗
- cancel() {
- this.$emit('update:certificateQualificationsDialogFlag', false);
- }
- }
- };
- </script>
- <style scoped lang="scss">
- :deep.el-form-item {
- margin-bottom: 0;
- }
- </style>
|