切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
小范
2 years ago
提交
d091e094b54a19c7282efe04563a4dbc264b94b1
1 个父辈
1ad67398
输入框优化
显示空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
44 行增加
和
4 行删除
src/views/deploy/inventroy.vue
src/views/deploy/inventroy.vue
查看文件 @
d091e09
...
...
@@ -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);
...
...
请
注册
或
登录
后发表评论