|
|
|
@ -2,20 +2,20 @@
|
|
|
|
|
<div>
|
|
|
|
|
<el-form :model="inputQuery" :rules="formRules" ref="dataForm">
|
|
|
|
|
<el-card style="margin-top: -30px">
|
|
|
|
|
<el-button-group style="display: flex">
|
|
|
|
|
<el-button type="primary" @click.native="submitUpload()" style="margin: 0 60px 10px auto; height: 35px"
|
|
|
|
|
:loading="loading">提交
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
<!--<el-button-group style="display: flex">-->
|
|
|
|
|
<!-- <el-button type="primary" @click.native="submitUpload()" style="margin: 0 60px 10px auto; height: 35px"-->
|
|
|
|
|
<!-- :loading="loading">提交-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!--</el-button-group>-->
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="3">
|
|
|
|
|
<div class="ao-text">
|
|
|
|
|
<span>规格型号:</span>
|
|
|
|
|
<span>包装规格:</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item prop="name">
|
|
|
|
|
<el-input v-model="inputQuery.spec" auto-complete="off" :disabled="true"></el-input>
|
|
|
|
|
<el-input v-model="inputQuery.bzgg" auto-complete="off" :disabled="true"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
@ -123,108 +123,108 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="3">
|
|
|
|
|
<div class="ao-text">
|
|
|
|
|
<span>检验报告上传:</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-upload
|
|
|
|
|
:disabled="formData.auditStatus == 1"
|
|
|
|
|
class="upload-demo"
|
|
|
|
|
ref="upload"
|
|
|
|
|
:action="this.uploadUrl"
|
|
|
|
|
:on-preview="uploadHandlePreview"
|
|
|
|
|
:on-remove="uploadHandleRemove"
|
|
|
|
|
:limit="1"
|
|
|
|
|
:headers="headers"
|
|
|
|
|
:on-exceed="uploadHandleExceed"
|
|
|
|
|
accept=".jpg,.png,.pdf"
|
|
|
|
|
:on-change="uploadOnchange"
|
|
|
|
|
:on-success="uploadHandleSuccess"
|
|
|
|
|
:on-error="uploadHandleError"
|
|
|
|
|
:on-before="uploadHandleBefore"
|
|
|
|
|
:file-list="fileList"
|
|
|
|
|
:data="{type:'image2'}"
|
|
|
|
|
:auto-upload="true">
|
|
|
|
|
<el-button slot="trigger" size="small" type="primary" :disabled="formData.auditStatus == 1">
|
|
|
|
|
{{ choiceFile }}
|
|
|
|
|
</el-button>
|
|
|
|
|
<div>只能上传 jpg,png,pdf 文件,且不超过 10 MB</div>
|
|
|
|
|
</el-upload>
|
|
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="3">
|
|
|
|
|
<div class="ao-text" v-if="this.inputQuery.filePath!=null">
|
|
|
|
|
<span>检验报告预览:</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-button type="primary" size="mini" icon="search" v-if="this.inputQuery.filePath!=null"
|
|
|
|
|
style="text-align:right" @click="showImgViewer">
|
|
|
|
|
检验报告预览
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-image-viewer v-if="imgViewerVisible" style="z-index:9999" :on-close="closeImgViewer"
|
|
|
|
|
:url-list="imgList"/>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="3">
|
|
|
|
|
<div class="ao-text">
|
|
|
|
|
<span>冷链报告上传:</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-upload
|
|
|
|
|
:disabled="formData.auditStatus == 1"
|
|
|
|
|
class="upload-demo"
|
|
|
|
|
ref="upload"
|
|
|
|
|
:action="this.uploadUrl"
|
|
|
|
|
:on-preview="uploadHandlePreview"
|
|
|
|
|
:on-remove="uploadHandleRemove1"
|
|
|
|
|
:limit="1"
|
|
|
|
|
:headers="headers"
|
|
|
|
|
:on-exceed="uploadHandleExceed"
|
|
|
|
|
accept=".jpg,.png,.pdf"
|
|
|
|
|
:on-change="uploadOnchange1"
|
|
|
|
|
:on-success="uploadHandleSuccess1"
|
|
|
|
|
:on-error="uploadHandleError"
|
|
|
|
|
:on-before="uploadHandleBefore"
|
|
|
|
|
:file-list="fileList"
|
|
|
|
|
:data="{type:'image2'}"
|
|
|
|
|
:auto-upload="true">
|
|
|
|
|
<el-button slot="trigger" size="small" type="primary" :disabled="formData.auditStatus == 1">
|
|
|
|
|
{{ choiceFile1 }}
|
|
|
|
|
</el-button>
|
|
|
|
|
<div>只能上传 jpg,png,pdf 文件,且不超过 10 MB</div>
|
|
|
|
|
</el-upload>
|
|
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="3">
|
|
|
|
|
<div class="ao-text" v-if="this.inputQuery.coldFilePath!=null">
|
|
|
|
|
<span>冷链报告预览:</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-button type="primary" size="mini" icon="search" v-if="this.inputQuery.coldFilePath!=null"
|
|
|
|
|
style="text-align:right" @click="showImgViewerCold">
|
|
|
|
|
冷链报告预览
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-image-viewer v-if="imgViewerVisibleCold" style="z-index:9999" :on-close="closeImgViewerCold" :url-list="imgListCold"/>
|
|
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
<!--<el-row>-->
|
|
|
|
|
<!-- <el-col :span="3">-->
|
|
|
|
|
<!-- <div class="ao-text">-->
|
|
|
|
|
<!-- <span>检验报告上传:</span>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="8">-->
|
|
|
|
|
<!-- <el-form-item>-->
|
|
|
|
|
<!-- <el-upload-->
|
|
|
|
|
<!-- :disabled="formData.auditStatus == 1"-->
|
|
|
|
|
<!-- class="upload-demo"-->
|
|
|
|
|
<!-- ref="upload"-->
|
|
|
|
|
<!-- :action="this.uploadUrl"-->
|
|
|
|
|
<!-- :on-preview="uploadHandlePreview"-->
|
|
|
|
|
<!-- :on-remove="uploadHandleRemove"-->
|
|
|
|
|
<!-- :limit="1"-->
|
|
|
|
|
<!-- :headers="headers"-->
|
|
|
|
|
<!-- :on-exceed="uploadHandleExceed"-->
|
|
|
|
|
<!-- accept=".jpg,.png,.pdf"-->
|
|
|
|
|
<!-- :on-change="uploadOnchange"-->
|
|
|
|
|
<!-- :on-success="uploadHandleSuccess"-->
|
|
|
|
|
<!-- :on-error="uploadHandleError"-->
|
|
|
|
|
<!-- :on-before="uploadHandleBefore"-->
|
|
|
|
|
<!-- :file-list="fileList"-->
|
|
|
|
|
<!-- :data="{type:'image2'}"-->
|
|
|
|
|
<!-- :auto-upload="true">-->
|
|
|
|
|
<!-- <el-button slot="trigger" size="small" type="primary" :disabled="formData.auditStatus == 1">-->
|
|
|
|
|
<!-- {{ choiceFile }}-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- <div>只能上传 jpg,png,pdf 文件,且不超过 10 MB</div>-->
|
|
|
|
|
<!-- </el-upload>-->
|
|
|
|
|
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <!–<el-col :span="3">–>-->
|
|
|
|
|
<!-- <!– <div class="ao-text" v-if="this.inputQuery.filePath!=null">–>-->
|
|
|
|
|
<!-- <!– <span>检验报告预览:</span>–>-->
|
|
|
|
|
<!-- <!– </div>–>-->
|
|
|
|
|
<!-- <!–</el-col>–>-->
|
|
|
|
|
<!-- <!–<el-col :span="8">–>-->
|
|
|
|
|
<!-- <!– <el-button type="primary" size="mini" icon="search" v-if="this.inputQuery.filePath!=null"–>-->
|
|
|
|
|
<!-- <!– style="text-align:right" @click="showImgViewer">–>-->
|
|
|
|
|
<!-- <!– 检验报告预览–>-->
|
|
|
|
|
<!-- <!– </el-button>–>-->
|
|
|
|
|
<!-- <!– <el-image-viewer v-if="imgViewerVisible" style="z-index:9999" :on-close="closeImgViewer"–>-->
|
|
|
|
|
<!-- <!– :url-list="imgList"/>–>-->
|
|
|
|
|
<!-- <!–</el-col>–>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--</el-row>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--<el-row>-->
|
|
|
|
|
<!-- <el-col :span="3">-->
|
|
|
|
|
<!-- <div class="ao-text">-->
|
|
|
|
|
<!-- <span>冷链报告上传:</span>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="8">-->
|
|
|
|
|
<!-- <el-form-item>-->
|
|
|
|
|
<!-- <el-upload-->
|
|
|
|
|
<!-- :disabled="formData.auditStatus == 1"-->
|
|
|
|
|
<!-- class="upload-demo"-->
|
|
|
|
|
<!-- ref="upload"-->
|
|
|
|
|
<!-- :action="this.uploadUrl"-->
|
|
|
|
|
<!-- :on-preview="uploadHandlePreview"-->
|
|
|
|
|
<!-- :on-remove="uploadHandleRemove1"-->
|
|
|
|
|
<!-- :limit="1"-->
|
|
|
|
|
<!-- :headers="headers"-->
|
|
|
|
|
<!-- :on-exceed="uploadHandleExceed"-->
|
|
|
|
|
<!-- accept=".jpg,.png,.pdf"-->
|
|
|
|
|
<!-- :on-change="uploadOnchange1"-->
|
|
|
|
|
<!-- :on-success="uploadHandleSuccess1"-->
|
|
|
|
|
<!-- :on-error="uploadHandleError"-->
|
|
|
|
|
<!-- :on-before="uploadHandleBefore"-->
|
|
|
|
|
<!-- :file-list="fileList"-->
|
|
|
|
|
<!-- :data="{type:'image2'}"-->
|
|
|
|
|
<!-- :auto-upload="true">-->
|
|
|
|
|
<!-- <el-button slot="trigger" size="small" type="primary" :disabled="formData.auditStatus == 1">-->
|
|
|
|
|
<!-- {{ choiceFile1 }}-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- <div>只能上传 jpg,png,pdf 文件,且不超过 10 MB</div>-->
|
|
|
|
|
<!-- </el-upload>-->
|
|
|
|
|
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <!–<el-col :span="3">–>-->
|
|
|
|
|
<!-- <!– <div class="ao-text" v-if="this.inputQuery.coldFilePath!=null">–>-->
|
|
|
|
|
<!-- <!– <span>冷链报告预览:</span>–>-->
|
|
|
|
|
<!-- <!– </div>–>-->
|
|
|
|
|
<!-- <!–</el-col>–>-->
|
|
|
|
|
<!-- <!–<el-col :span="8">–>-->
|
|
|
|
|
<!-- <!– <el-button type="primary" size="mini" icon="search" v-if="this.inputQuery.coldFilePath!=null"–>-->
|
|
|
|
|
<!-- <!– style="text-align:right" @click="showImgViewerCold">–>-->
|
|
|
|
|
<!-- <!– 冷链报告预览–>-->
|
|
|
|
|
<!-- <!– </el-button>–>-->
|
|
|
|
|
<!-- <!– <el-image-viewer v-if="imgViewerVisibleCold" style="z-index:9999" :on-close="closeImgViewerCold" :url-list="imgListCold"/>–>-->
|
|
|
|
|
|
|
|
|
|
<!-- <!–</el-col>–>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--</el-row>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|