切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
朱兆平
2 years ago
提交
f03dab2f3611a09af06903c5e1f90ede6ebc438f
1 个父辈
c98285e6
入库业务录入部分完善
显示空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
11 行增加
和
3 行删除
src/views/deploy/houseRecord.vue
src/views/deploy/houseRecord.vue
查看文件 @
f03dab2
...
...
@@ -13,7 +13,7 @@
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label=" " :label-width="formLabelWidth" prop="waybill">
<el-form-item label=" " :label-width="formLabelWidth" prop="waybill
master
">
<el-input v-model="addForm.waybillmaster" autocomplete="off" suffix-icon="el-icon-document" clearable>
<template slot="prepend">主  单</template>
</el-input>
...
...
@@ -265,7 +265,7 @@
查询
</el-button>
<el-button type="success" icon="el-icon-edit" @click="applyAdd()">直接入库</el-button>
<el-button type="success" icon="el-icon-edit" @click="
apply
Add()">批量入库</el-button>
<el-button type="success" icon="el-icon-edit" @click="
batch
Add()">批量入库</el-button>
</el-col>
</el-row>
<!-- 列表区域-->
...
...
@@ -472,7 +472,8 @@
transcar: '',
transtype:'销售入库',
vol:'',
waybill:'',
waybillmaster:'',
waybillsub:'',
weight:'',
remark:'',
remark1:'',
...
...
@@ -592,6 +593,13 @@
this.dialogApply= 'create';
this.apply_dialog.addDialog = true;
},
batchAdd(){
this.$refs.addForm.validate(valid => {
// 未通过,表单预校验
if (!valid) return;
this.tableData.push(this.addForm);
})
},
// 添加功能
add() {
this.$refs.addForm.validate(valid => {
...
...
请
注册
或
登录
后发表评论