Merge remote-tracking branch 'origin/master'

ywj_dev
1178634255 2 years ago
commit e0afa1349a

@ -96,7 +96,7 @@
<el-button slot="trigger" size="small" type="primary" :disabled="formData.auditStatus == 1"> <el-button slot="trigger" size="small" type="primary" :disabled="formData.auditStatus == 1">
{{ choiceFile }} {{ choiceFile }}
</el-button> </el-button>
<div>只能上传 jpg,png,pdf,doc 文件且不超过 10 MB</div> <div>只能上传 jpg,png 文件且不超过 10 MB</div>
</el-upload> </el-upload>
</el-form-item> </el-form-item>
</el-col> </el-col>

@ -231,6 +231,7 @@ export default {
list: [], list: [],
total: 0, total: 0,
invList: [], invList: [],
invLists: [],
loading: false, loading: false,
deleteData: { deleteData: {
id: "", id: "",
@ -322,7 +323,8 @@ export default {
getInvList() { getInvList() {
getInvListByUser() getInvListByUser()
.then((response) => { .then((response) => {
this.invList = response.data || []; this.invLists = response.data || [];
this.invList = this.invLists.filter( item => item.code != 1000001 && item.code != 1000002)
this.getList(); this.getList();
}) })
.catch(() => { .catch(() => {

Loading…
Cancel
Save