|
|
|
@ -16,10 +16,10 @@
|
|
|
|
|
@change="getDeptList"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in deptList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
v-for="item in deptList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
@ -36,15 +36,15 @@
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="登记时间:">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
|
v-model="actDateRange"
|
|
|
|
|
type="daterange"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
range-separator="至"
|
|
|
|
|
start-placeholder="开始时间"
|
|
|
|
|
end-placeholder="结束时间"
|
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
|
v-model="actDateRange"
|
|
|
|
|
type="daterange"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
range-separator="至"
|
|
|
|
|
start-placeholder="开始时间"
|
|
|
|
|
end-placeholder="结束时间"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -85,25 +85,25 @@
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="formMap[formName]"
|
|
|
|
|
:visible.sync="formVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="85%"
|
|
|
|
|
v-if="formVisible"
|
|
|
|
|
:title="formMap[formName]"
|
|
|
|
|
:visible.sync="formVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
width="85%"
|
|
|
|
|
v-if="formVisible"
|
|
|
|
|
>
|
|
|
|
|
<deviceReceiveOrderModify
|
|
|
|
|
:deviceReceiveOrder="deviceReceiveOrder"
|
|
|
|
|
:closeDialog="closeDialog"
|
|
|
|
|
:deviceReceiveOrder="deviceReceiveOrder"
|
|
|
|
|
:closeDialog="closeDialog"
|
|
|
|
|
></deviceReceiveOrderModify>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
@ -131,11 +131,11 @@
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="detailTotal>0"
|
|
|
|
|
:total="detailTotal"
|
|
|
|
|
:limit.sync="detailQuery.limit"
|
|
|
|
|
:page.sync="detailQuery.page"
|
|
|
|
|
@pagination="getDetailList"
|
|
|
|
|
v-show="detailTotal>0"
|
|
|
|
|
:total="detailTotal"
|
|
|
|
|
:limit.sync="detailQuery.limit"
|
|
|
|
|
:page.sync="detailQuery.page"
|
|
|
|
|
@pagination="getDetailList"
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
@ -299,12 +299,12 @@ export default {
|
|
|
|
|
getInvList() {
|
|
|
|
|
let params = {deptCode: this.filterQuery.fromDeptCode};
|
|
|
|
|
findInvByUser(params)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.invList = response.data || [];
|
|
|
|
|
this.getList();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.invList = response.data || [];
|
|
|
|
|
this.getList();
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getSpaceList() {
|
|
|
|
|
let params = {
|
|
|
|
@ -332,7 +332,7 @@ export default {
|
|
|
|
|
binaryData.push(response);
|
|
|
|
|
//获取blob链接。
|
|
|
|
|
let url = window.URL.createObjectURL(
|
|
|
|
|
new Blob(binaryData, {type: "application/pdf"})
|
|
|
|
|
new Blob(binaryData, {type: "application/pdf"})
|
|
|
|
|
);
|
|
|
|
|
this.loading = false;
|
|
|
|
|
window.open(url);//打开新标签页,预览pdf。
|
|
|
|
@ -346,103 +346,101 @@ export default {
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
addReceiveOrder() {
|
|
|
|
|
this.formVisible = true;
|
|
|
|
|
this.formName = 'add';
|
|
|
|
|
this.deviceReceiveOrder = {};
|
|
|
|
|
},
|
|
|
|
|
editOrder(row) {
|
|
|
|
|
this.formVisible = true;
|
|
|
|
|
this.formName = 'edit';
|
|
|
|
|
this.deviceReceiveOrder = row;
|
|
|
|
|
},
|
|
|
|
|
submitAudit(row) {
|
|
|
|
|
let params = {id: row.id};
|
|
|
|
|
submitAudit(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功!");
|
|
|
|
|
this.getList();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
deleteDialog(rowId) {
|
|
|
|
|
this.$confirm('此操作将永久删除该领用记录, 是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
let params = {id: rowId};
|
|
|
|
|
this.loading = true;
|
|
|
|
|
deleteDeviceReceiveOrder(params).then((res) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
addReceiveOrder() {
|
|
|
|
|
this.formVisible = true;
|
|
|
|
|
this.formName = 'add';
|
|
|
|
|
this.deviceReceiveOrder = {};
|
|
|
|
|
},
|
|
|
|
|
editOrder(row) {
|
|
|
|
|
this.formVisible = true;
|
|
|
|
|
this.formName = 'edit';
|
|
|
|
|
this.deviceReceiveOrder = row;
|
|
|
|
|
},
|
|
|
|
|
submitAudit(row) {
|
|
|
|
|
let params = {id: row.id};
|
|
|
|
|
submitAudit(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.$message.success("删除成功!");
|
|
|
|
|
this.$message.success("提交成功!");
|
|
|
|
|
this.getList();
|
|
|
|
|
this.detailList = []
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.formVisible = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
datailSelect(row) {
|
|
|
|
|
this.detailQuery = row
|
|
|
|
|
this.deviceProjectSelectVisible = true
|
|
|
|
|
},
|
|
|
|
|
handleChange(row) {
|
|
|
|
|
this.detailQuery.orderIdFk = row.orderId;
|
|
|
|
|
this.detailQuery.page = 1;
|
|
|
|
|
this.getDetailList();
|
|
|
|
|
},
|
|
|
|
|
getDetailList() {
|
|
|
|
|
getDeviceReceiveOrderDetailList(this.detailQuery).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.detailList = res.data.list || [];
|
|
|
|
|
this.detailTotal = res.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
},
|
|
|
|
|
deleteDialog(rowId) {
|
|
|
|
|
this.$confirm('此操作将永久删除该领用记录, 是否继续?', '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
let params = {id: rowId};
|
|
|
|
|
this.loading = true;
|
|
|
|
|
deleteDeviceReceiveOrder(params).then((res) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.$message.success("删除成功!");
|
|
|
|
|
this.getList();
|
|
|
|
|
this.detailList = []
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.formVisible = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
datailSelect(row) {
|
|
|
|
|
this.detailQuery = row
|
|
|
|
|
this.deviceProjectSelectVisible = true
|
|
|
|
|
},
|
|
|
|
|
handleChange(row) {
|
|
|
|
|
this.detailQuery.orderIdFk = row.orderId;
|
|
|
|
|
this.detailQuery.page = 1;
|
|
|
|
|
this.getDetailList();
|
|
|
|
|
},
|
|
|
|
|
getDetailList() {
|
|
|
|
|
getDeviceReceiveOrderDetailList(this.detailQuery).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.detailList = res.data.list || [];
|
|
|
|
|
this.detailTotal = res.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
this.detailTotal = 0;
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
this.detailTotal = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
components: {
|
|
|
|
|
deviceReceiveOrderModify
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
mounted() {
|
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
created() {
|
|
|
|
|
//查询配置项
|
|
|
|
|
getConfig().then((res) => {
|
|
|
|
|
if (res.code == 20000 && !isBlank(res.data.paramValue)) {
|
|
|
|
|
this.paramValue = res.data.paramValue
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.detailList = [];
|
|
|
|
|
this.detailTotal = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
components: {
|
|
|
|
|
deviceReceiveOrderModify
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
mounted()
|
|
|
|
|
{
|
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
created()
|
|
|
|
|
{
|
|
|
|
|
//查询配置项
|
|
|
|
|
getConfig().then((res) => {
|
|
|
|
|
if (res.code == 20000 && !isBlank(res.data.paramValue)) {
|
|
|
|
|
this.paramValue = res.data.paramValue
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
this.getDeptList();
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
})
|
|
|
|
|
this.getDeptList();
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
</script>
|
|
|
|
|