Commit 9cdd2591 authored by YLKCNK's avatar YLKCNK

库存管理按操作时间查询

parent 4aefc337
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
<el-button <el-button
size="mini" size="mini"
type="text" type="text"
icon="el-icon-delete" class="del-button"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
>删除 >删除
</el-button> </el-button>
...@@ -233,7 +233,7 @@ ...@@ -233,7 +233,7 @@
</div> </div>
<div slot="tip" class="el-upload__tip"> <div slot="tip" class="el-upload__tip">
<el-checkbox v-model="upload.updateSupport" />是否更新已经存在的用户数据 <el-checkbox v-model="upload.updateSupport" />是否更新已经存在的用户数据
<el-link type="info" @click="importTemplate">下载模板</el-link> <el-link type="info" class="downloadTem" @click="importTemplate">下载模板</el-link>
</div> </div>
<div slot="tip" class="el-upload__tip__red">提示:仅允许导入“xls”或“xlsx”格式文件!</div> <div slot="tip" class="el-upload__tip__red">提示:仅允许导入“xls”或“xlsx”格式文件!</div>
</el-upload> </el-upload>
...@@ -458,7 +458,7 @@ export default { ...@@ -458,7 +458,7 @@ export default {
submitForm: function() { submitForm: function() {
this.$refs.form.validate((valid) => { this.$refs.form.validate((valid) => {
if (valid) { if (valid) {
this.$confirm('是否确认导出所有库存信息?', '提示', { this.$confirm('是否确认修改信息?', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'
...@@ -680,8 +680,12 @@ el-form.el-form-item.el-input{ ...@@ -680,8 +680,12 @@ el-form.el-form-item.el-input{
.el-upload__tip__red{ .el-upload__tip__red{
color: red; color: red;
} }
.el-upload__tip .el-link--inner{ .downloadTem{
font-size: 12px; font-size: 11px;
margin-top: -2px;
}
.del-button{
color: rgba(255, 38, 0, 0.99);
} }
</style> </style>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment