123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545 |
- <template>
- <el-dialog
- class="modify-print-plan"
- :visible.sync="modalIsShow"
- :title="title"
- top="10px"
- width="700px"
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- append-to-body
- @open="visibleChange"
- >
- <el-form
- ref="modalFormComp"
- label-width="110px"
- :rules="rules"
- :model="modalForm"
- >
- <div class="part-box part-box-pad part-box-border">
- <h4 class="part-box-tips">基本信息:</h4>
- <el-form-item prop="name" label="印刷计划名称:">
- <el-input
- v-model.trim="modalForm.name"
- clearable
- placeholder="请输入"
- :disabled="!editable"
- ></el-input>
- </el-form-item>
- <el-form-item prop="examStartTime" label="考试时间:">
- <el-date-picker
- v-model="createTime"
- type="datetimerange"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- value-format="timestamp"
- align="right"
- unlink-panels
- :disabled="!editable"
- @change="dateChange"
- >
- </el-date-picker>
- </el-form-item>
- </div>
- <div class="part-box part-box-pad part-box-border">
- <h4 class="part-box-tips">试卷&题卡印品:</h4>
- <el-form-item prop="printContent" label="试卷、题卡:">
- <el-checkbox-group
- v-model="modalForm.printContent"
- :disabled="!editable"
- >
- <el-checkbox
- v-for="(val, key) in PRINT_CONTENT_TYPE"
- :key="key"
- :label="key"
- >{{ val }}</el-checkbox
- >
- </el-checkbox-group>
- </el-form-item>
- <el-form-item
- prop="backupMethod"
- label="试卷备份方式:"
- :required="!!modalForm.printContent.length"
- >
- <el-select
- v-model="modalForm.backupMethod"
- class="mr-2"
- size="small"
- placeholder="请选择"
- :disabled="!editable"
- >
- <el-option
- v-for="(val, key) in PAPER_BACKUP_TYPE"
- :key="key"
- :value="key"
- :label="val"
- ></el-option>
- </el-select>
- <el-input-number
- class="mr-1"
- v-model="modalForm.backupCount"
- size="small"
- :min="1"
- :max="200"
- :step="1"
- step-strictly
- :controls="false"
- :disabled="!editable"
- ></el-input-number>
- <span>份</span>
- </el-form-item>
- <el-form-item
- prop="drawRule"
- label="抽卷规则:"
- :required="!!modalForm.printContent.length"
- >
- <el-radio-group v-model="modalForm.drawRule" :disabled="!editable">
- <el-radio
- v-for="(val, key) in DRAW_RULE_TYPE"
- :label="key"
- :key="key"
- >{{ val }}</el-radio
- >
- </el-radio-group>
- <p class="tips-info">
- 1.只抽取一次:不同印刷计划下,同一试卷编号下的卷型只能被抽取一次;
- </p>
- <p class="tips-info">
- 2.可反复抽取:不同印刷计划下,同一试卷编号下的卷型可重复抽取,系统默认优先抽取未曝光卷型。
- </p>
- </el-form-item>
- </div>
- <div class="part-box part-box-pad part-box-border">
- <h4 class="part-box-tips">变量印品:</h4>
- <el-form-item
- v-for="(item, index) in modalForm.variableContent"
- :key="item.type"
- :label="`${TEMPLATE_CLASSIFY[item.type]}:`"
- :prop="`variableContent.${index}.templateId`"
- :rules="{
- required: false,
- validator: templateValidator,
- trigger: 'change'
- }"
- :required="!!item.templateId.length"
- >
- <el-checkbox-group
- v-model="item.templateId"
- :disabled="!editable"
- @change="vals => tempChange(vals, `variableContent.${index}`)"
- >
- <el-checkbox
- v-for="temp in templateSources[item.type]"
- :label="temp.id"
- :key="temp.id"
- >{{ temp.name }}</el-checkbox
- >
- </el-checkbox-group>
- <div v-if="item.templateId.length">
- <el-select
- v-model="item.backupMethod"
- class="mr-2"
- size="small"
- placeholder="请选择"
- :disabled="!editable"
- >
- <el-option
- v-for="(val, key) in PRINT_BACKUP_TYPE"
- :key="key"
- :value="key"
- :label="val"
- ></el-option>
- </el-select>
- <el-input-number
- v-model="item.backupCount"
- class="mr-1"
- size="small"
- :min="1"
- :max="200"
- :step="1"
- step-strictly
- :controls="false"
- :disabled="!editable"
- ></el-input-number>
- <span>份</span>
- </div>
- </el-form-item>
- </div>
- <div class="part-box part-box-pad part-box-border">
- <h4 class="part-box-tips">普通印品:</h4>
- <el-form-item
- v-for="(item, index) in modalForm.ordinaryContent"
- :key="item.type"
- :label="`${TEMPLATE_CLASSIFY[item.type]}:`"
- label-width="130px"
- :prop="`ordinaryContent.${index}.templateId`"
- :rules="{
- required: false,
- validator: templateValidator,
- trigger: 'change'
- }"
- :required="!!item.templateId.length"
- >
- <el-checkbox-group
- v-model="item.templateId"
- :disabled="!editable"
- @change="vals => tempChange(vals, `ordinaryContent.${index}`)"
- >
- <el-checkbox
- v-for="temp in templateSources[item.type]"
- :label="temp.id"
- :key="temp.id"
- >{{ temp.name }}</el-checkbox
- >
- </el-checkbox-group>
- <div v-if="item.templateId.length">
- <el-select
- v-model="item.backupMethod"
- class="mr-2"
- size="small"
- placeholder="请选择"
- :disabled="!editable"
- >
- <el-option
- v-for="(val, key) in PRINT_BACKUP_TYPE"
- :key="key"
- :value="key"
- :label="val"
- ></el-option>
- </el-select>
- <el-input-number
- v-model="item.backupCount"
- class="mr-1"
- size="small"
- :min="1"
- :max="200"
- :step="1"
- step-strictly
- :controls="false"
- :disabled="!editable"
- ></el-input-number>
- <span>份</span>
- </div>
- </el-form-item>
- </div>
- <el-form-item prop="selectedPrint"></el-form-item>
- </el-form>
- <div slot="footer">
- <el-button
- v-if="editable"
- type="primary"
- :disabled="isSubmit"
- @click="submit"
- >确认</el-button
- >
- <el-button type="danger" @click="cancel" plain>取消</el-button>
- </div>
- </el-dialog>
- </template>
- <script>
- import {
- PRINT_CONTENT_TYPE,
- DRAW_RULE_TYPE,
- PRINT_BACKUP_TYPE,
- PAPER_BACKUP_TYPE,
- TEMPLATE_CLASSIFY
- } from "@/constants/enumerate";
- import { deepCopy } from "@/plugins/utils";
- import { updatePrintPlan, printPlanTemplateList } from "../api";
- const initModalForm = {
- id: null,
- name: "",
- examStartTime: "",
- examEndTime: "",
- printContent: [],
- backupMethod: "PLACE",
- backupCount: 1,
- drawRule: "ONE",
- variableContent: [
- {
- type: "SIGN",
- templateId: [],
- oldTemplateId: [],
- backupMethod: "ROOM",
- backupCount: 1
- },
- {
- type: "PACKAGE",
- templateId: [],
- oldTemplateId: [],
- backupMethod: "ROOM",
- backupCount: 1
- }
- ],
- ordinaryContent: [
- {
- type: "CHECK_IN",
- templateId: [],
- oldTemplateId: [],
- backupMethod: "ROOM",
- backupCount: 1
- }
- ]
- };
- export default {
- name: "modify-print-plan",
- props: {
- instance: {
- type: Object,
- default() {
- return {};
- }
- },
- editType: {
- type: String,
- default: "ADD",
- validator: val => ["ADD", "PREVIEW", "EDIT"].includes(val)
- }
- },
- computed: {
- isEdit() {
- return !!this.instance.id;
- },
- title() {
- const names = {
- ADD: "新增印刷计划",
- PREVIEW: "印刷计划详情",
- EDIT: "编辑印刷计划"
- };
- return names[this.editType];
- },
- editable() {
- return this.editType !== "PREVIEW";
- }
- },
- data() {
- const printContentValidator = (rule, value, callback) => {
- if (value.includes("PAPER") && !value.includes("CARD")) {
- callback(new Error("选择了试卷,同时必须选择题卡"));
- } else {
- callback();
- }
- };
- const backupMethodValidator = (rule, value, callback) => {
- if (!this.modalForm.printContent.length) {
- return callback();
- }
- if (!value) {
- return callback(new Error("请选择备份方式"));
- }
- if (!this.modalForm.backupCount) {
- return callback(new Error("请输入备份数量"));
- }
- callback();
- };
- const selectedPrintValidator = (rule, value, callback) => {
- const printInfo = [
- ...this.modalForm.variableContent,
- ...this.modalForm.ordinaryContent
- ];
- const hasPrintInfo = printInfo.some(item => item.templateId.length);
- if (hasPrintInfo || this.modalForm.printContent.length) {
- callback();
- } else {
- callback(new Error("必须选择一项印品"));
- }
- };
- return {
- modalIsShow: false,
- isSubmit: false,
- modalForm: deepCopy(initModalForm),
- createTime: [],
- PRINT_CONTENT_TYPE,
- DRAW_RULE_TYPE,
- PRINT_BACKUP_TYPE,
- PAPER_BACKUP_TYPE,
- TEMPLATE_CLASSIFY,
- variableContent: [],
- ordinaryContent: [],
- templateSources: {},
- rules: {
- name: [
- {
- required: true,
- message: "请输入印刷计划名称,长度不要超过50个字符",
- max: 50,
- trigger: "change"
- }
- ],
- examStartTime: [
- {
- required: true,
- message: "请设置考试时间",
- trigger: "change"
- }
- ],
- printContent: [
- {
- required: false,
- validator: printContentValidator,
- trigger: "change"
- }
- ],
- backupMethod: [
- {
- required: false,
- validator: backupMethodValidator,
- trigger: "change"
- }
- ],
- drawRule: [
- {
- required: false,
- message: "请选择抽卷规则",
- trigger: "change"
- }
- ],
- selectedPrint: [
- {
- required: false,
- validator: selectedPrintValidator,
- trigger: "change"
- }
- ]
- }
- };
- },
- mounted() {
- this.getTemplates();
- },
- methods: {
- async getTemplates() {
- const data = await printPlanTemplateList();
- const templateSources = {};
- const templates = [...data.variable, ...data.ordinary];
- templates.forEach(item => {
- templateSources[item.type] = item.template;
- });
- this.templateSources = templateSources;
- },
- templateValidator(rule, value, callback) {
- const [field, index] = rule.field.split(".");
- const val = this.modalForm[field][index];
- if (val.templateId.length) {
- if (!val.backupMethod) {
- return callback(new Error("请选择备份方式"));
- }
- if (!val.backupCount) {
- return callback(new Error("请输入备份数量"));
- }
- callback();
- } else {
- callback();
- }
- },
- tempChange(vals, name) {
- const [field, index] = name.split(".");
- const info = this.modalForm[field][index];
- const newVals = vals.filter(item => !info.oldTemplateId.includes(item));
- info.templateId = newVals;
- info.oldTemplateId = newVals;
- this.$refs.modalFormComp.validateField("selectedPrint");
- },
- initData(val) {
- if (val.id) {
- this.createTime = [val.examStartTime, val.examEndTime];
- this.modalForm = this.$objAssign(deepCopy(initModalForm), val);
- const transformInfo = item => {
- const templateIds = item.templateId ? [item.templateId] : [];
- return {
- type: item.type,
- templateId: templateIds,
- oldTemplateId: templateIds,
- backupMethod: item.backupMethod,
- backupCount: item.backupCount
- };
- };
- this.modalForm.variableContent = val.variableContent.map(transformInfo);
- this.modalForm.ordinaryContent = val.ordinaryContent.map(transformInfo);
- this.modalForm.printContent = val.printContent
- ? val.printContent.split(",")
- : [];
- } else {
- let modalForm = deepCopy(initModalForm);
- modalForm.variableContent = modalForm.variableContent.filter(
- item => this.templateSources[item.type]
- );
- modalForm.ordinaryContent = modalForm.ordinaryContent.filter(
- item => this.templateSources[item.type]
- );
- this.modalForm = modalForm;
- this.createTime = [];
- }
- },
- visibleChange() {
- this.initData(this.instance);
- this.$nextTick(() => {
- this.$refs.modalFormComp.clearValidate();
- });
- },
- cancel() {
- this.modalIsShow = false;
- },
- open() {
- this.modalIsShow = true;
- },
- dateChange() {
- if (this.createTime) {
- this.modalForm.examStartTime = this.createTime[0];
- this.modalForm.examEndTime = this.createTime[1];
- } else {
- this.modalForm.examStartTime = "";
- this.modalForm.examEndTime = "";
- }
- },
- async submit() {
- const valid = await this.$refs.modalFormComp.validate().catch(() => {});
- if (!valid) return;
- if (this.isSubmit) return;
- this.isSubmit = true;
- const datas = { ...this.modalForm };
- const transformInfo = item => {
- const templateId = item.templateId.join();
- const template = this.templateSources[item.type].find(
- temp => temp.id === templateId
- );
- return {
- type: item.type,
- templateId,
- attachmentId: template && template.attachmentId,
- backupMethod: item.backupMethod,
- backupCount: item.backupCount
- };
- };
- datas.variableContent = JSON.stringify(
- this.modalForm.variableContent.map(transformInfo)
- );
- datas.ordinaryContent = JSON.stringify(
- this.modalForm.ordinaryContent.map(transformInfo)
- );
- const data = await updatePrintPlan(datas).catch(() => {});
- this.isSubmit = false;
- if (!data) return;
- this.$message.success("保存成功!");
- this.$emit("modified");
- this.cancel();
- }
- }
- };
- </script>
|