<td colspan=""> <span style=""></span> </td>

本文详细介绍了HTML中用于样式定义的CSS属性,如行高控制,以及如何使用Java格式化日期。深入探讨了标签的使用场景及编码定义。
<td colspan="5">
   <span style=" read"></span>

                </td>

----------------

<fmt:fomateDate value=" " pattern=" ">标签用于使用不同的方式格式化日期

-----------------------------------------------------------------------

@CHARSET "UTF-8"; 用于定义css文件中的编码格式

.a{

height:20px;

width:33px;

}

------------------------------------------

line-height:20px 控制行间的距离(行高)

帮我把所有的输入框改成<el-input>,匹配vue2:<template> <div class="app-container"> <!-- 搜索表单 --> <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="90px"> <el-form-item label="客户名称" prop="customerName"> <input type="text" v-model="queryParams.customerName" placeholder="请输入客户名称" clearable size="small" @keyup.enter.native="handleQuery"/> </el-form-item> <el-form-item label="项目名称" prop="projectName"> <input type="text" v-model="queryParams.projectName" placeholder="请输入项目名称" clearable size="small" @keyup.enter.native="handleQuery"/> </el-form-item> <el-form-item label="成品料号" prop="batteryFinishedProductMaterialNumber"> <input type="text" v-model="queryParams.batteryFinishedProductMaterialNumber" placeholder="请输入成品料号" clearable size="small" @keyup.enter.native="handleQuery"/> </el-form-item> <el-form-item label="半成品料号" prop="pcbSemiFinishedProductMaterialNumber"> <input type="text" v-model="queryParams.pcbSemiFinishedProductMaterialNumber" placeholder="请输入半成品料号" clearable size="small" @keyup.enter.native="handleQuery"/> </el-form-item> <el-form-item label="丝印" prop="pcbSilkScreen"> <input type="text" v-model="queryParams.pcbSilkScreen" placeholder="请输入丝印" clearable size="small" @keyup.enter.native="handleQuery"/> </el-form-item> <el-form-item label="文档版次" prop="revision"> <input type="text" v-model="queryParams.revision" placeholder="请输入文档版次" clearable size="small" @keyup.enter.native="handleQuery"/> </el-form-item> <el-form-item label="开始时间"> <el-date-picker v-model="queryParams.startTime" type="datetime" placeholder="选择开始日期" size="small" value-format="yyyy-MM-dd HH:mm:ss" style="width: 190px;" ></el-date-picker> </el-form-item> <el-form-item label="结束时间"> <el-date-picker v-model="queryParams.endTime" type="datetime" placeholder="选择结束日期" size="small" value-format="yyyy-MM-dd HH:mm:ss" style="width: 190px;" ></el-date-picker> </el-form-item> <el-form-item> <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> </el-form-item> </el-form> <!-- 操作按钮 --> <el-row :gutter="10" class="mb8"> <el-col :span="1.5"> <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd" v-hasPermi="['cms:productionspecificationdata:add']">新增</el-button> </el-col> <el-col :span="1.5"> <el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete" v-hasPermi="['cms:productionspecificationdata:remove']">批量删除</el-button> </el-col> <el-col :span="1.5"> <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" v-hasPermi="['cms:productionspecificationdata:export']">批量导出PDF</el-button> </el-col> <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"/> </el-row> <!-- 表格 --> <el-table v-loading="loading" :data="dataList" @selection-change="handleSelectionChange"> <el-table-column type="selection" width="30" align="center"/> <el-table-column label="ID" fixed="left" width="50" prop="id" align="center"/> <el-table-column label="项目名称" fixed="left" prop="projectName" align="center" sortable width="130"/> <el-table-column label="电芯品牌" prop="batteryCellBrand" align="center" width="130"/> <el-table-column label="电芯型号" prop="batteryCellModel" align="center"/> <el-table-column label="丝印" prop="pcbSilkScreen" align="center" width="130"/> <el-table-column label="料号" prop="pcbMaterialNumber" align="center" width="100"/> <el-table-column label="客户名称" prop="customerName" align="center"/> <el-table-column label="文档版次" align="center"> <el-table-column label="创建人" prop="createBy" align="center" width="100"/> <el-table-column label="创建时间" prop="createTime" align="center" width="100"/> <template slot-scope="scope"> {{ scope.row.versionRecordList && scope.row.versionRecordList.length > 0 ? scope.row.versionRecordList[0].revision : '--' }} </template> </el-table-column> <el-table-column label="更新人" align="center" width="190px"> <template slot-scope="scope"> {{ scope.row.versionRecordList && scope.row.versionRecordList.length > 0 ? scope.row.versionRecordList[0].updateBy : '--' }} </template> </el-table-column> <el-table-column label="更新时间" align="center" width="190px"> <template slot-scope="scope"> {{ scope.row.versionRecordList && scope.row.versionRecordList.length > 0 ? scope.row.versionRecordList[0].updateTime || scope.row.createTime : '--' }} </template> </el-table-column> <el-table-column label="PCB顶图" align="center" width="150"> <template slot-scope="scope"> <el-button v-if="scope.row.pcbSchematicDiagramTop" type="text" icon="el-icon-document" @click="previewFile(scope.row.pcbSchematicDiagramTop)">查看顶图</el-button> <span v-else>—</span> </template> </el-table-column> <el-table-column label="PCB底图" align="center" width="150"> <template slot-scope="scope"> <el-button v-if="scope.row.pcbSchematicDiagramBottom" type="text" icon="el-icon-document" @click="previewFile(scope.row.pcbSchematicDiagramBottom)">查看底图</el-button> <span v-else>—</span> </template> </el-table-column> <el-table-column label="PCM端口示意图" align="center" width="150"> <template slot-scope="scope"> <el-button v-if="scope.row.pcmPortDiagram" type="text" icon="el-icon-document" @click="previewFile(scope.row.pcmPortDiagram)">查看底图</el-button> <span v-else>—</span> </template> </el-table-column> <el-table-column label="电池组输出端口图" align="center" width="150"> <template slot-scope="scope"> <el-button v-if="scope.row.batteryOutputPortDiagram" type="text" icon="el-icon-document" @click="previewFile(scope.row.batteryOutputPortDiagram)">查看底图</el-button> <span v-else>—</span> </template> </el-table-column> <el-table-column label="NTC阻值R-T表1" align="center" width="150"> <template slot-scope="scope"> <el-button v-if="scope.row.ntcResistanceRTTable1" type="text" icon="el-icon-document" @click="previewFile(scope.row.ntcResistanceRTTable1)">查看底图</el-button> <span v-else>—</span> </template> </el-table-column> <el-table-column label="NTC阻值R-T表2" align="center" width="150"> <template slot-scope="scope"> <el-button v-if="scope.row.ntcResistanceRTTable2" type="text" icon="el-icon-document" @click="previewFile(scope.row.ntcResistanceRTTable2)">查看底图</el-button> <span v-else>—</span> </template> </el-table-column> <el-table-column label="操作" align="center" fixed="right" width="160" class-name="small-padding fixed-width"> <template slot-scope="scope"> <el-button size="mini" type="text" icon="el-icon-download" @click="handleExportPDF(scope.row)" v-hasPermi="['cms:productionspecificationdata:export']" >下载PDF</el-button> <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['cms:productionspecificationdata:edit']" >修改</el-button> <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['cms:productionspecificationdata:remove']" >删除</el-button> </template> </el-table-column> </el-table> <!-- 分页 --> <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList"/> <!-- 添加/编辑对话框 --> <el-dialog :title="title" :visible.sync="open" :before-close="cancel" :close-on-click-modal="false" width="95%" top="5vh" append-to-body > <el-form ref="form" :model="specForm" :rules="rules" label-width="120px"> <el-tabs type="border-card"> <h1 style="text-align: center; margin-bottom: 150px;">生产规格书</h1> <!-- 基本信息 --> <el-row :gutter="20"> <el-col :span="6"> <div class="grid-content"> <label class="label-cell">客户名称:</label> <input type="text" v-model="specForm.customerName" /> </div> </el-col> <el-col :span="6"> <div class="grid-content"> <label class="label-cell">项目名称:</label> <input type="text" v-model="specForm.projectName" /> </div> </el-col> <el-col :span="6"> <div class="grid-content"> <label class="label-cell">电池成品料号:</label> <input type="text" v-model="specForm.batteryFinishedProductMaterialNumber" /> </div> </el-col> <el-col :span="6"> <div class="grid-content"> <label class="label-cell">PCB半成品料号:</label> <input type="text" v-model="specForm.pcbSemiFinishedProductMaterialNumber" /> </div> </el-col> </el-row> <hr class="divider"> <!-- 文件修正记录 --> <h2>文件修正记录</h2> <div id="app"> <table class="spec-table"> <thead> <tr> <th>序号</th> <th>版次</th> <th>变更日期</th> <th>变更内容</th> <th>拟制</th> <th>审核</th> <th>批准</th> <th>操作</th> </tr> </thead> <tbody> <tr v-for="(item, index) in versionRecordList" :key="item.id"> <td>{{ index + 1 }}</td> <td><input type="text" v-model="item.revision" /></td> <td> <el-date-picker v-model="item.updateTime" type="datetime" placeholder="选择日期" size="small" value-format="yyyy-MM-dd HH:mm:ss" :disabled="true" style="width: 190px;" ></el-date-picker> </td> <td><input type="text" v-model="item.changeDescription" /></td> <td><input type="text" v-model="item.updateBy" /></td> <td><input type="text" v-model="item.reviewedBy" /></td> <td><input type="text" v-model="item.approvedBy" /></td> <td><button @click="removeRow(index)">删除</button></td> </tr> </tbody> </table> <div style="text-align: center"> <button @click="addRow">+</button> </div> </div> <hr class="divider"> <h2>硬件版本</h2> <table class="spec-table"> <thead> <tr> <th>序号</th> <th>PCB</th> <th>丝印</th> <th>料号</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>主板</td> <td><input type="text" v-model="specForm.pcbSilkScreen" /></td> <td><input type="text" v-model="specForm.pcbMaterialNumber" /></td> </tr> </tbody> </table> <h2>电芯配组要求</h2> <table class="spec-table"> <thead> <tr> <th>序号</th> <th>检查项</th> <th>要求</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>电芯品牌</td> <td><input type="text" v-model="specForm.batteryCellBrand" /></td> </tr> <tr> <td>2</td> <td>电芯型号</td> <td> <input type="text" v-model="specForm.batteryCellModel" /> </td> </tr> <tr> <td>3</td> <td>最大电芯内阻(mΩ)</td> <td> <input type="text" v-model="specForm.maxBatteryCellInternalResistance" /> </td> </tr> <tr> <td>4</td> <td>电芯配组最大内阻差(mΩ)</td> <td> <input type="text" v-model="specForm.batteryCellGroupMaxInternalResistanceDifference" /> </td> </tr> <tr> <td>5</td> <td>电芯配组最大电压差(mV)</td> <td> <input type="text" v-model="specForm.batteryCellGroupMaxVoltageDifference" /> </td> </tr> <tr> <td>6</td> <td>电芯配组最大容量差(mAh)</td> <td> <input type="text" v-model="specForm.batteryCellGroupMaxCapacityDifference" /> </td> </tr> </tbody> </table> <hr class="divider"> <h2>电芯上电顺序</h2> <div><input type="text" v-model="specForm.batteryCellPowerOnSequencePcb" style="display: inline-block; width: 250px;" /></div> <hr class="divider"> <h2>测试及检验标准</h2> <table class="spec-table"> <thead> <tr> <th colspan="2">检验项目</th> <th>性能要求</th> <th>PCM测试</th> <th>半测</th> <th>成测</th> </tr> </thead> <tbody> <tr> <td rowspan="20">功能测试</td> <td>1级充电过压保护(V)</td> <td><input type="text" v-model="specForm.level1ChargeOvervoltageProtection" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox1 === 'option1'" @click="specForm.checkbox1 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox1 === 'option2'" @click="specForm.checkbox1 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox1 === 'option3'" @click="specForm.checkbox1 = 'option3'" /> </td> </tr> <tr> <td>1级充电过压保护延时(S)</td> <td><input type="text" v-model="specForm.level1ChargeOvervoltageProtectionDelay" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox2 === 'option1'" @click="specForm.checkbox2 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox2 === 'option2'" @click="specForm.checkbox2 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox2 === 'option3'" @click="specForm.checkbox2 = 'option3'" /> </td> </tr> <tr> <td>1级充电过压保护解除(V)</td> <td><input type="text" v-model="specForm.level1ChargeOvervoltageProtectionRelease" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox3 === 'option1'" @click="specForm.checkbox3 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox3 === 'option2'" @click="specForm.checkbox3 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox3 === 'option3'" @click="specForm.checkbox3 = 'option3'" /> </td> </tr> <tr> <td>2级充电过压保护(V)</td> <td><input type="text" v-model="specForm.level2ChargeOvervoltageProtection" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox4 === 'option1'" @click="specForm.checkbox4 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox4 === 'option2'" @click="specForm.checkbox4 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox4 === 'option3'" @click="specForm.checkbox4 = 'option3'" /> </td> </tr> <tr> <td>2级充电过压保护延时(S)</td> <td><input type="text" v-model="specForm.level2ChargeOvervoltageProtectionDelay" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox5 === 'option1'" @click="specForm.checkbox5 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox5 === 'option2'" @click="specForm.checkbox5 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox5 === 'option3'" @click="specForm.checkbox5 = 'option3'" /> </td> </tr> <tr> <td>放电欠压保护(V)</td> <td><input type="text" v-model="specForm.dischargeUndervoltageProtection" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox6 === 'option1'" @click="specForm.checkbox6 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox6 === 'option2'" @click="specForm.checkbox6 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox6 === 'option3'" @click="specForm.checkbox6 = 'option3'" /> </td> </tr> <tr> <td>放电欠压保护延时(S)</td> <td><input type="text" v-model="specForm.dischargeUndervoltageProtectionDelay" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox7 === 'option1'" @click="specForm.checkbox7 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox7 === 'option2'" @click="specForm.checkbox7 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox7 === 'option3'" @click="specForm.checkbox7 = 'option3'" /> </td> </tr> <tr> <td>放电欠压保护释放(V)</td> <td><input type="text" v-model="specForm.dischargeUndervoltageProtectionRelease" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox8 === 'option1'" @click="specForm.checkbox8 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox8 === 'option2'" @click="specForm.checkbox8 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox8 === 'option3'" @click="specForm.checkbox8 = 'option3'" /> </td> </tr> <tr> <td>充电过流保护(A)</td> <td><input type="text" v-model="specForm.chargeOvercurrentProtection" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox9 === 'option1'" @click="specForm.checkbox9 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox9 === 'option2'" @click="specForm.checkbox9 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox9 === 'option3'" @click="specForm.checkbox9 = 'option3'" /> </td> </tr> <tr> <td>充电过流保护延时(S)</td> <td><input type="text" v-model="specForm.chargeOvercurrentProtectionDelay" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox10 === 'option1'" @click="specForm.checkbox10 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox10 === 'option2'" @click="specForm.checkbox10 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox10 === 'option3'" @click="specForm.checkbox10 = 'option3'" /> </td> </tr> <tr> <td>充电过流解除</td> <td><input type="text" v-model="specForm.chargeOvercurrentRelease" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox11 === 'option1'" @click="specForm.checkbox11 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox11 === 'option2'" @click="specForm.checkbox11 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox11 === 'option3'" @click="specForm.checkbox11 = 'option3'" /> </td> </tr> <tr> <td>1级放电过流保护(A)</td> <td><input type="text" v-model="specForm.level1DischargeOvercurrentProtection" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox12 === 'option1'" @click="specForm.checkbox12 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox12 === 'option2'" @click="specForm.checkbox12 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox12 === 'option3'" @click="specForm.checkbox12 = 'option3'" /> </td> </tr> <tr> <td>1级放电过流保护延时(S)</td> <td><input type="text" v-model="specForm.level1DischargeOvercurrentProtectionDelay" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox13 === 'option1'" @click="specForm.checkbox13 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox13 === 'option2'" @click="specForm.checkbox13 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox13 === 'option3'" @click="specForm.checkbox13 = 'option3'" /> </td> </tr> <tr> <td>2级放电过流保护(A)</td> <td><input type="text" v-model="specForm.level2DischargeOvercurrentProtection" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox14 === 'option1'" @click="specForm.checkbox14 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox14 === 'option2'" @click="specForm.checkbox14 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox14 === 'option3'" @click="specForm.checkbox14 = 'option3'" /> </td> </tr> <tr> <td>2级放电过流保护延时(mS)</td> <td><input type="text" v-model="specForm.level2DischargeOvercurrentProtectionDelay" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox15 === 'option1'" @click="specForm.checkbox15 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox15 === 'option2'" @click="specForm.checkbox15 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox15 === 'option3'" @click="specForm.checkbox15 = 'option3'" /> </td> </tr> <tr> <td>短路保护(A)</td> <td><input type="text" v-model="specForm.shortCircuitProtection" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox16 === 'option1'" @click="specForm.checkbox16 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox16 === 'option2'" @click="specForm.checkbox16 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox16 === 'option3'" @click="specForm.checkbox16 = 'option3'" /> </td> </tr> <tr> <td>短路保护延时(uS)</td> <td><input type="text" v-model="specForm.shortCircuitProtectionDelay" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox17 === 'option1'" @click="specForm.checkbox17 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox17 === 'option2'" @click="specForm.checkbox17 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox17 === 'option3'" @click="specForm.checkbox17 = 'option3'" /> </td> </tr> <tr> <td>放电过流解除</td> <td><input type="text" v-model="specForm.dischargeOvercurrentRelease" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox18 === 'option1'" @click="specForm.checkbox18 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox18 === 'option2'" @click="specForm.checkbox18 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox18 === 'option3'" @click="specForm.checkbox18 = 'option3'" /> </td> </tr> <tr> <td>PACK 内阻(mΩ)</td> <td><input type="text" v-model="specForm.packInternalResistance" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox19 === 'option1'" @click="specForm.checkbox19 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox19 === 'option2'" @click="specForm.checkbox19 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox19 === 'option3'" @click="specForm.checkbox19 = 'option3'" /> </td> </tr> <tr> <td>JP点连通性测试(V)</td> <td><input type="text" v-model="specForm.jpPointConnectivityTest" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox20 === 'option1'" @click="specForm.checkbox20 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox20 === 'option2'" @click="specForm.checkbox20 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox20 === 'option3'" @click="specForm.checkbox20 = 'option3'" /> </td> </tr> <tr> <td rowspan="4">阻值测试</td> <td>NTC1阻值测试(kΩ)</td> <td><input type="text" v-model="specForm.ntc1ResistanceTest" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox21 === 'option1'" @click="specForm.checkbox21 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox21 === 'option2'" @click="specForm.checkbox21 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox21 === 'option3'" @click="specForm.checkbox21 = 'option3'" /> </td> </tr> <tr> <td>NTC2阻值测试(kΩ)</td> <td><input type="text" v-model="specForm.ntc2ResistanceTest" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox22 === 'option1'" @click="specForm.checkbox22 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox22 === 'option2'" @click="specForm.checkbox22 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox22 === 'option3'" @click="specForm.checkbox22 = 'option3'" /> </td> </tr> <tr> <td>B-与P-之间阻值(mΩ)</td> <td><input type="text" v-model="specForm.bMinusToPMinusResistance" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox23 === 'option1'" @click="specForm.checkbox23 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox23 === 'option2'" @click="specForm.checkbox23 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox23 === 'option3'" @click="specForm.checkbox23 = 'option3'" /> </td> </tr> <tr> <td>B+与P+之间阻值(mΩ)</td> <td><input type="text" v-model="specForm.bPlusToPPositiveResistance" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox24 === 'option1'" @click="specForm.checkbox24 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox24 === 'option2'" @click="specForm.checkbox24 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox24 === 'option3'" @click="specForm.checkbox24 = 'option3'" /> </td> </tr> <tr> <td rowspan="2">功耗</td> <td>工作功耗(uA)</td> <td><input type="text" v-model="specForm.operatingPowerConsumption" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox25 === 'option1'" @click="specForm.checkbox25 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox25 === 'option2'" @click="specForm.checkbox25 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox25 === 'option3'" @click="specForm.checkbox25 = 'option3'" /> </td> </tr> <tr> <td>休眠功耗(uA)</td> <td><input type="text" v-model="specForm.sleepPowerConsumption" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox26 === 'option1'" @click="specForm.checkbox26 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox26 === 'option2'" @click="specForm.checkbox26 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox26 === 'option3'" @click="specForm.checkbox26 = 'option3'" /> </td> </tr> <tr> <td rowspan="2">充放电</td> <td>正常充电</td> <td><input type="text" v-model="specForm.normalCharging" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox27 === 'option1'" @click="specForm.checkbox27 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox27 === 'option2'" @click="specForm.checkbox27 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox27 === 'option3'" @click="specForm.checkbox27 = 'option3'" /> </td> </tr> <tr> <td>正常放电</td> <td><input type="text" v-model="specForm.normalDischarging" style="width: 250px;" /></td> <td> <input type="checkbox" :checked="specForm.checkbox28 === 'option1'" @click="specForm.checkbox28 = 'option1'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox28 === 'option2'" @click="specForm.checkbox28 = 'option2'" /> </td> <td> <input type="checkbox" :checked="specForm.checkbox28 === 'option3'" @click="specForm.checkbox28 = 'option3'" /> </td> </tr> <tr> <td rowspan="5">全程活化</td> <td>CC-CV充电</td> <td colspan="1"><input type="text" v-model="specForm.ccCvCharging" style="width: 250px;" /></td> </tr> <tr> <td>搁置</td> <td colspan="1"><input type="text" v-model="specForm.fullActivationStand" style="width: 250px;" /></td> </tr> <tr> <td>恒流放电</td> <td colspan="1"><input type="text" v-model="specForm.constantCurrentDischarge" style="width: 250px;" /></td> </tr> <tr> <td>搁置</td> <td colspan="1"><input type="text" v-model="specForm.fullActivationStand" style="width: 250px;" /></td> </tr> <tr> <td>充电至出货电压</td> <td colspan="1"><input type="text" v-model="specForm.fullActivationChargeToShipmentVoltage" style="width: 250px;" /></td> </tr> <tr> <td rowspan="2">简易活化</td> <td>充电至出货电压</td> <td colspan="1"><input type="text" v-model="specForm.simpleActivationChargeToShipmentVoltage" style="width: 250px;" /></td> </tr> <tr> <td>搁置</td> <td colspan="1"><input type="text" v-model="specForm.simpleActivationStand" style="width: 250px;" /></td> </tr> <tr> <td>活化标准</td> <td>放电容量</td> <td><input type="text" v-model="specForm.dischargeCapacity" style="width: 250px;" /></td> </tr> </tbody> </table> <hr class="divider"> <h2>附录</h2> <table style="width: 100%; border-collapse: collapse;"> <tr> <td style="width: 50%; padding: 10px;"> <label>PCB贴片图顶面</label> <input type="file" @change="uploadPcbTopImage" ref="pcbSchematicDiagramTop" /> <span v-if="pcbTopFileSelected" class="delete-icon" @click="removeUploadPcbTopImage">❌</span> </td> <td style="width: 50%; padding: 10px;"> <label>PCB贴片图底面</label> <input type="file" @change="uploadPcbBottomImage" ref="pcbSchematicDiagramBottom" /> <span v-if="pcbBottomFileSelected" class="delete-icon" @click="removeUploadPcbBottomImage">❌</span> </td> </tr> <tr> <td style="width: 50%; padding: 10px;"> <label>PCM端口示意图</label> <input type="file" @change="uploadPcmPortImage" ref="pcmPortDiagram"/> <span v-if="pcbPcmPortFileSelected" class="delete-icon" @click="removeUploadPcmPortImage">❌</span> </td> <td style="width: 50%; padding: 10px;"> <label>电池组输出端口图</label> <input type="file" @change="uploadBatteryPackOutputPortDiagramImg" ref="batteryOutputPortDiagram"/> <span v-if="batteryPackOutputPortDiagramFileSelected" class="delete-icon" @click="removeUploadBatteryPackOutputPortDiagramImg">❌</span> </td> </tr> <tr> <td style="width: 50%; padding: 10px;"> <label>NTC阻值R-T表1</label> <input type="file" @change="uploadNtcTable1" ref="ntcResistanceRTTable1"/> <span v-if="ntcTable1FileSelected" class="delete-icon" @click="removeUploadNtcTable1Image">❌</span> </td> <td style="width: 50%; padding: 10px;"> <label>NTC阻值R-T表2</label> <input type="file" @change="uploadNtcTable2" ref="ntcResistanceRTTable2"/> <span v-if="ntcTable2FileSelected" class="delete-icon" @click="removeUploadNtcTable2Image">❌</span> </td> </tr> </table> </el-tabs> <div style="text-align: right; margin-top: 20px;"> <el-button @click="cancel">取消</el-button> <el-button type="primary" @click="submitForm">提交</el-button> </div> </el-form> </el-dialog> </div> </template>
最新发布
11-26
<table cellspacing="0" width="566"> <tbody> <tr class="firstRow"> <td width="83" valign="center" style="padding: 3px 6px; border-left: none; border-right: none; border-top-width: 2px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">产品型号</span></b> </p> </td> <td width="484" valign="center" style="padding: 3px 6px; border-left: none; border-right: none; border-top-width: 2px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">RG2000-E工业级4G路由器</span></b> </p> </td> <td width="484" valign="center" style="padding: 3px 6px; border-left: none; border-right: none; border-top-width: 2px; border-top-color: windowtext; border-bottom-width: 1px; border-bottom-color: windowtext;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">RG2000-EW工业级4G路由器</span></b> </p> </td> </tr> <tr> <td width="83" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">固定端口</span></b> </p> </td> <td width="484" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p> <span style="font-family: 宋体;font-size: 12px">2</span><span style="font-family: 宋体;font-size: 12px"><span style="font-family:宋体">个</span><span style="font-family:宋体">100M以太接口(1*</span></span><span style="font-family: 宋体;font-size: 12px">WAN</span><span style="font-family: 宋体;font-size: 12px">+</span><span style="font-family: 宋体;font-size: 12px">1*LAN</span><span style="font-family: 宋体;font-size: 12px">);</span> </p> <p> <span style="font-family: 宋体;font-size: 12px">2</span><span style="font-family: 宋体;font-size: 12px"><span style="font-family:宋体">个</span><span style="font-family:宋体">SIM卡插槽;</span></span> </p> <p> <span style="font-family: 宋体;font-size: 12px">2</span><span style="font-family: 宋体;font-size: 12px"><span style="font-family:宋体">个</span><span style="font-family:宋体">4G天线接口;</span></span> </p> <p> <span style="font-family: 宋体;font-size: 12px">1个GPS接口(选配);</span> </p> <p> <span style="font-family: 宋体;font-size: 12px">1个R</span><span style="font-family: 宋体;font-size: 12px">S232/RS485串口</span><span style="font-family: 宋体;font-size: 12px">(</span><span style="font-family: 宋体;font-size: 12px">二选一</span><span style="font-family: 宋体;font-size: 12px">)</span><span style="font-family: 宋体;font-size: 12px">;</span> </p> <p> <span style="font-family: 宋体;font-size: 12px">1个继电器输出接口;</span> </p> <p> <span style="font-family: 宋体;font-size: 12px">1个FUNC按钮;</span> </p> <p> <span style="font-family: 宋体;font-size: 12px">1个标准3芯电源接口</span> </p> <p> <span style="font-family: 宋体;font-size: 12px"> </span> </p> </td> <td width="484" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p> <span style="font-family: 宋体;font-size: 12px">2</span><span style="font-family: 宋体;font-size: 12px"><span style="font-family:宋体">个</span><span style="font-family:宋体">100M以太接口(1*</span></span><span style="font-family: 宋体;font-size: 12px">WAN</span><span style="font-family: 宋体;font-size: 12px">+</span><span style="font-family: 宋体;font-size: 12px">1*LAN</span><span style="font-family: 宋体;font-size: 12px">);</span> </p> <p> <span style="font-family: 宋体;font-size: 12px">2</span><span style="font-family: 宋体;font-size: 12px"><span style="font-family:宋体">个</span><span style="font-family:宋体">SIM卡插槽;</span></span> </p> <p> <span style="font-family: 宋体;font-size: 12px">2</span><span style="font-family: 宋体;font-size: 12px"><span style="font-family:宋体">个</span><span style="font-family:宋体">4G天线接口;</span></span> </p> <p> <span style="font-family: 宋体;font-size: 12px">2个WIFI天线接口;</span> </p> <p> <span style="font-family: 宋体;font-size: 12px">1个GPS接口(选配);</span> </p> <p> <span style="font-family: 宋体;font-size: 12px">1个R</span><span style="font-family: 宋体;font-size: 12px">S232/RS485串口</span><span style="font-family: 宋体;font-size: 12px">(</span><span style="font-family: 宋体;font-size: 12px">二选一</span><span style="font-family: 宋体;font-size: 12px">)</span><span style="font-family: 宋体;font-size: 12px">;</span> </p> <p> <span style="font-family: 宋体;font-size: 12px">1个继电器输出接口;</span> </p> <p> <span style="font-family: 宋体;font-size: 12px">1个FUNC按钮;</span> </p> <p> <span style="font-family: 宋体;font-size: 12px">1个标准3芯电源接口</span> </p> </td> </tr> <tr> <td width="83" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style="margin-top:0;margin-bottom:0;text-indent:0;text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">WIFI模块</span></b> </p> </td> <td width="484" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style="margin-top: 0;margin-bottom: 0;text-indent: 0"> <span style="font-family: 宋体;font-size: 12px">----</span> </p> </td> <td width="484" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style="margin-top: 0;margin-bottom: 0;text-indent: 0"> <span style="font-family: 宋体;font-size: 12px">802.11 b/g/n,300Mbps双通道</span> </p> </td> </tr> <tr> <td width="83" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">4G/3G/2G</span></b> </p> </td> <td width="484" valign="center" colspan="2" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p> <span style="font-family: 宋体;font-size: 12px"><span style="font-family:宋体">支持全网:</span><span style="font-family:宋体">TDD-LTE、FDD-LTE、TD-SCDMA、UMTS、EVDO、EDGE、CDMA1x、GPRS</span></span> </p> </td> </tr> <tr> <td width="83" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">继电器输出</span></b> </p> </td> <td width="484" valign="center" colspan="2" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p> <span style="font-family: 宋体;font-size: 12px"><span style="font-family:宋体">继电器开关承载能力:</span><span style="font-family:宋体">DC30V/2A</span></span> </p> </td> </tr> <tr> <td width="83" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">整机尺寸</span></b> </p> </td> <td width="484" valign="center" colspan="2" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p> <span style="font-family:宋体;font-size:12px">91*1</span><span style="font-family:宋体;font-size:12px">11</span><span style="font-family:宋体;font-size:12px">*3</span><span style="font-family:宋体;font-size:12px">2</span><span style="font-family:宋体;font-size:12px">mm (宽*深*高,不含天线) </span> </p> </td> </tr> <tr> <td width="83" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">整机功耗</span></b> </p> </td> <td width="484" valign="center" colspan="2" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p> <span style="font-family: 宋体;font-size: 12px">≤1</span><span style="font-family: 宋体;font-size: 12px">0</span><span style="font-family: 宋体;font-size: 12px">W</span> </p> </td> </tr> <tr> <td width="83" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">工作温度</span></b> </p> </td> <td width="484" valign="center" colspan="2" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p> <span style="font-family: 宋体;font-size: 12px">-40~+85°C</span> </p> </td> </tr> <tr> <td width="83" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">电源输入</span></b> </p> </td> <td width="484" valign="center" colspan="2" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p> <span style="font-family: 宋体;font-size: 12px">DC12V 1A</span> </p> </td> </tr> <tr> <td width="83" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">结构设计</span></b> </p> </td> <td width="484" valign="center" colspan="2" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p> <span style="font-family: 宋体;font-size: 12px">高强度金属外壳</span> </p> </td> </tr> <tr> <td width="83" valign="center" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">工作湿度</span></b> </p> </td> <td width="484" valign="center" colspan="2" style="padding: 3px 6px; border-width: initial; border-style: none; border-color: initial;"> <p style=";text-align:center"> <span style="font-family: 宋体;font-size: 12px">10~95%RH</span> </p> </td> </tr> <tr> <td width="83" valign="center" style="padding: 3px 6px; border-left: none; border-right: none; border-top: none; border-bottom-width: 2px; border-bottom-color: windowtext;"> <p style=";text-align:center"> <b><span style="font-family: 宋体;font-size: 12px">存储温度</span></b> </p> </td> <td width="484" valign="center" colspan="2" style="padding: 3px 6px; border-left: none; border-right: none; border-top: none; border-bottom-width: 2px; border-bottom-color: windowtext;"> <p style=";text-align:center"> <span style="font-family: 宋体;font-size: 12px">-40~+85°C</span> </p> </td> </tr> </tbody> </table> <p> <br/> </p>
09-05
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值