|
|
@@ -0,0 +1,97 @@
|
|
|
+<template>
|
|
|
+ <el-dialog title="补充办登信息" :visible.sync="show" center width="600px">
|
|
|
+ <el-form
|
|
|
+ hide-required-asterisk
|
|
|
+ :model="form"
|
|
|
+ :rules="rules"
|
|
|
+ ref="form"
|
|
|
+ label-width="140px"
|
|
|
+ style="padding-right: 130px"
|
|
|
+ >
|
|
|
+ <el-form-item prop="registerNotice" label="授权办登通知日">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="form.registerNotice"
|
|
|
+ type="date"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ placeholder="选择日期"
|
|
|
+ >
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item prop="registerEndDate" label="办登截止日期">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="form.registerEndDate"
|
|
|
+ type="date"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ placeholder="选择日期"
|
|
|
+ >
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item prop="feeRemark" label="费用备注">
|
|
|
+ <el-input v-model="form.feeRemark"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="登记通知书" prop="attachment1">
|
|
|
+ <attachment-upload
|
|
|
+ v-model="form.attachment1"
|
|
|
+ :fileSize.sync="form.attachment1.size"
|
|
|
+ ></attachment-upload>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item>
|
|
|
+ <el-button style="width: 150px" size="normal" type="primary" @click="onSubmit">提交</el-button>
|
|
|
+ <el-button style="width: 120px" size="normal" @click="show = false">取消</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-dialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import logoPatent from '@/mixins/logoPatent';
|
|
|
+export default {
|
|
|
+ mixins: [logoPatent],
|
|
|
+ props: {
|
|
|
+ info: {}
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ form: {
|
|
|
+ attachment1: { attachmentName: '登记通知书', fileName: '', url: '', remark: '', size: '' }
|
|
|
+ },
|
|
|
+ show: false,
|
|
|
+ rules: {
|
|
|
+ attachment1: {
|
|
|
+ validator: (rule, value, callback) => {
|
|
|
+ if (!value.url) {
|
|
|
+ callback(new Error('请上传登记通知书'));
|
|
|
+ } else {
|
|
|
+ callback();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ trigger: 'change'
|
|
|
+ },
|
|
|
+ registerNotice: { required: true, message: '请选择授权办登通知日', trigger: 'change' },
|
|
|
+ registerEndDate: { required: true, message: '请选择办登截止日期', trigger: 'change' },
|
|
|
+ feeRemark: { required: true, message: '请输入费用备注', trigger: 'blur' }
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ onSubmit() {
|
|
|
+ this.$refs.form.validate(valid => {
|
|
|
+ if (valid) {
|
|
|
+ this.submit();
|
|
|
+ } else {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ submit() {
|
|
|
+ let info = { ...this.info };
|
|
|
+ this.$emit('uploadAttement', this.form.attachment1);
|
|
|
+ info.workflow = 'REPLY_RESULT';
|
|
|
+ this.$emit('submit', info);
|
|
|
+ this.show = false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|