作者 小范

输入框优化

... ... @@ -145,9 +145,9 @@
width="320">
<template slot-scope="scope">
<el-button type="warning" size="mini" @click="changeFhl(scope.row)">更改分单号</el-button>
<el-button type="primary" size="mini">分批出库</el-button>
<el-button type="primary" size="mini" @click="outBound(scope.row)">分批出库</el-button>
<!-- 件数重量尺寸-->
<el-button type="success" size="mini">分批改单</el-button>
<el-button type="success" size="mini" @click="changeOrder(scope.row)">分批改单</el-button>
<!-- 单号-->
<!-- <el-button type="success" size="mini" @click="applyEdit(scope.row)">编辑</el-button>-->
<!-- <el-button type="danger" size="mini" @click="applyDel(scope.$index,scope.row)">删除</el-button>-->
... ... @@ -167,6 +167,46 @@
:total="total">
</el-pagination>
</el-row>
<!-- 分批出库-->
<el-row>
<el-dialog :title="detaFhl" :visible.sync="fhlDialog" width="40%" >
<el-form :model="fhlForm" :rules="fhlRules" ref="fhlForm" style="margin-top: 40px">
<el-row>
<el-col :span="8">
<el-form-item label="" :label-width="formLabelWidth" prop="billfhl">
<el-input placeholder="请输入更改后的分单号" v-model="fhlForm.billfhl" autocomplete="off" size="small" style="width: 400px">
<template slot="prepend">更改分单号为:</template>
</el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="fhlDialog = false" size="small">取 消</el-button>
<el-button type="primary" @click="fhlEdit()" size="small">提 交</el-button>
</div>
</el-dialog>
</el-row>
<!-- 分批改单-->
<el-row>
<el-dialog :title="detaFhl" :visible.sync="fhlDialog" width="40%" >
<el-form :model="fhlForm" :rules="fhlRules" ref="fhlForm" style="margin-top: 40px">
<el-row>
<el-col :span="8">
<el-form-item label="" :label-width="formLabelWidth" prop="billfhl">
<el-input placeholder="请输入更改后的分单号" v-model="fhlForm.billfhl" autocomplete="off" size="small" style="width: 400px">
<template slot="prepend">更改分单号为:</template>
</el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="fhlDialog = false" size="small">取 消</el-button>
<el-button type="primary" @click="fhlEdit()" size="small">提 交</el-button>
</div>
</el-dialog>
</el-row>
<!-- 更改分单号-->
<el-row>
<el-dialog :title="detaFhl" :visible.sync="fhlDialog" width="40%" >
... ... @@ -972,8 +1012,8 @@
}
</style>
<style>
.el-input--mini .el-input__inner{
background-color: rgba(255,255,255,0.1);
.analysis_text .el-input--mini .el-input__inner{
background-color: rgba(255,255,255,0.1) !important;
border: 0px;
font-size: 14px;
color: rgb(64,158,255);
... ...