切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
shenhailong
5 years ago
提交
81a05f425ce1943b4b762a208116078f94e123af
1 个父辈
d73c2f47
承运人 目的地 小写转大写
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
8 行增加
和
11 行删除
src/views/security/security.vue
src/views/security/security.vue
查看文件 @
81a05f4
...
...
@@ -44,7 +44,7 @@
<template slot-scope="scope">
<el-button size="small" @click="handleEdit(scope.$index, scope.row)">编辑</el-button>
<el-button type="danger" size="small" @click="handleDel(scope.$index, scope.row)">删除</el-button>
<el-button type="primary" size="small" @click="print(scope.$index, scope.row)">打印</el-button
>
<!-- <el-button type="primary" size="small" @click="print(scope.$index, scope.row)">打印</el-button>--
>
</template>
</el-table-column>
</el-table>
...
...
@@ -63,7 +63,7 @@
</el-col>
<el-col :span="8">
<el-form-item label="承运人" prop="carrier">
<el-input v-model="editForm.carrier" auto-complete="on" placeholder="承运人"></el-input>
<el-input v-model="editForm.carrier"
onkeyup="this.value=this.value.toUpperCase()"
auto-complete="on" placeholder="承运人"></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -86,7 +86,7 @@
<el-row>
<el-col :span="8">
<el-form-item label="目的站" prop="destination">
<el-input v-model="editForm.destination" auto-complete="on" placeholder="目的站"></el-input>
<el-input v-model="editForm.destination"
onkeyup="this.value=this.value.toUpperCase()"
auto-complete="on" placeholder="目的站"></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
...
...
@@ -174,7 +174,7 @@
</el-col>
<el-col :span="8">
<el-form-item label="承运人" prop="carrier">
<el-input v-model="addForm.carrier" auto-complete="on" placeholder="承运人"></el-input>
<el-input v-model="addForm.carrier"
onkeyup="this.value=this.value.toUpperCase()"
auto-complete="on" placeholder="承运人"></el-input>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -197,7 +197,7 @@
<el-row>
<el-col :span="8">
<el-form-item label="目的站" prop="destination">
<el-input v-model="addForm.destination" auto-complete="on" placeholder="目的站"></el-input>
<el-input v-model="addForm.destination"
onkeyup="this.value=this.value.toUpperCase()"
auto-complete="on" placeholder="目的站"></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
...
...
@@ -820,9 +820,7 @@
import NProgress from 'nprogress'
import { getList, remove, add, edit} from '../../api/security/security';
import {selectSecurityAwba} from '../../api/exitPre';
import {
validAwb
} from "../../utils/validate"
import {validAwb} from "../../utils/validate"
import moment from 'moment'
import loginUserInfo from '../../api/base'
export default {
...
...
@@ -840,8 +838,6 @@
displayValue: true, //是否默认显示条形码数据
//textPosition :'top', //条形码数据显示的位置
background: '#fff', //条形码背景颜色
width: '2px',//单个条形码的宽度
...
...
@@ -1222,7 +1218,8 @@
});
},
//新增
// 新增
addSubmit: function (value) {
this.$refs.addForm.validate((valid) => {
if (valid) {
...
...
请
注册
或
登录
后发表评论