7/1 单据管理 按钮 loading

演示数据2.0
wangwei 9 months ago
parent c48b677488
commit 128b6f43d7

@ -4,8 +4,8 @@
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="100px"> <el-form :model="formData" :rules="formRules" ref="dataForm" label-width="100px">
<el-row type="flex" justify="end"> <el-row type="flex" justify="end">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px;"> <el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px;">
<el-button type="primary" @click.native="generateQRCodeText()" :loading="loading">生成内部码</el-button> <el-button type="primary" @click.native="generateQRCodeText()" :loading="generateQRCodeTextLoading">生成内部码</el-button>
<el-button type="primary" @click.native="printStockOrderDetailPDF()" :loading="loading">标签打印全部</el-button> <el-button type="primary" @click.native="printStockOrderDetailPDF()" :loading="printStockOrderDetailPDFLoading">标签打印全部</el-button>
<el-button type="primary" @click.native="printStockOrderDetailStatementPDF()" :loading="loading">报表打印全部</el-button> <el-button type="primary" @click.native="printStockOrderDetailStatementPDF()" :loading="loading">报表打印全部</el-button>
<el-switch style="margin-left: 50px;" v-model="filterUDIType" active-text="过滤已有UDI码的产品"></el-switch> <el-switch style="margin-left: 50px;" v-model="filterUDIType" active-text="过滤已有UDI码的产品"></el-switch>
</el-button-group> </el-button-group>
@ -201,6 +201,8 @@ export default {
codeArray: [], codeArray: [],
total: 0, total: 0,
loading: false, loading: false,
generateQRCodeTextLoading: false,
printStockOrderDetailPDFLoading: false,
index: null, index: null,
formLoading: false, formLoading: false,
formVisible: false, formVisible: false,
@ -300,10 +302,10 @@ export default {
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning", type: "warning",
}).then(() => { }).then(() => {
this.loading = true; this.generateQRCodeTextLoading = true;
generateInCodeQRCodeText({orderIdFk: this.formData.billNo, chack: this.filterUDIType}) generateInCodeQRCodeText({orderIdFk: this.formData.billNo, chack: this.filterUDIType})
.then(response => { .then(response => {
this.loading = false; this.generateQRCodeTextLoading = false;
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success("生成成功!"); this.$message.success("生成成功!");
this.getOrderQRCodeTextList(); this.getOrderQRCodeTextList();
@ -313,7 +315,7 @@ export default {
} }
}) })
.catch(() => { .catch(() => {
this.loading = false; this.generateQRCodeTextLoading = false;
}) })
}).catch(() => { }).catch(() => {
@ -335,8 +337,9 @@ export default {
tQuery.queryId = row.id; tQuery.queryId = row.id;
} }
this.loading = true; this.printStockOrderDetailPDFLoading = true;
inspectionStockQRCodeTextPDFFromTemplateFile(tQuery).then((response) => { inspectionStockQRCodeTextPDFFromTemplateFile(tQuery).then((response) => {
this.printStockOrderDetailPDFLoading = false
if (response.code === 20000) { if (response.code === 20000) {
if (row != null) { if (row != null) {
tQuery.id = row.id; tQuery.id = row.id;
@ -374,11 +377,11 @@ export default {
printCodeIdFk: tQuery.queryId, printCodeIdFk: tQuery.queryId,
stockOrderFk: tQuery.orderId, stockOrderFk: tQuery.orderId,
} }
this.loading = false; this.printStockOrderDetailPDFLoading = false;
this.$message.warning("打印文件正在生成中,请点击刷新按钮查看进度,请勿关闭按钮重复打印!"); this.$message.warning("打印文件正在生成中,请点击刷新按钮查看进度,请勿关闭按钮重复打印!");
} }
}).catch(() => { }).catch(() => {
this.loading = false; this.printStockOrderDetailPDFLoading = false;
}); });
} else } else
@ -394,14 +397,15 @@ export default {
this.loading = false; this.loading = false;
window.open(url);//pdf window.open(url);//pdf
}).catch(() => { }).catch(() => {
this.loading = false; this.printStockOrderDetailPDFLoading = false;
}); });
} else { } else {
this.loading = false; this.printStockOrderDetailPDFLoading = false;
this.$message.error(response.message); this.$message.error(response.message);
} }
}).catch(() => { }).catch(() => {
this.loading = false; this.loading = false;
this.printStockOrderDetailPDFLoading = false;
}); });
}, },
printStockOrderDetailStatementPDF(row) { printStockOrderDetailStatementPDF(row) {

@ -300,7 +300,9 @@ export default {
}, },
methods: { methods: {
submitUpload() { submitUpload() {
this.loading = true
updateBizById(this.inputQuery).then((res) => { updateBizById(this.inputQuery).then((res) => {
this.loading = false
if (res.code == 20000) { if (res.code == 20000) {
this.$message({ this.$message({
type: "success", type: "success",
@ -308,7 +310,8 @@ export default {
}); });
this.closeDialog(); this.closeDialog();
} }
}).catch(() => {
this.loading = false
}) })

@ -19,21 +19,21 @@
@click.native="OptionalDocument()" @click.native="OptionalDocument()"
>选入预验收入库单 >选入预验收入库单
</el-button> </el-button>
<el-button size="mini" type="primary" @click.native="saveOrder()" <el-button size="mini" type="primary" @click.native="saveOrder()" :loading="saveLoading"
>草稿保存 >草稿保存
</el-button> </el-button>
<el-button size="mini" type="primary" @click.native="submit()" <el-button size="mini" type="primary" @click.native="submit()" :loading="submitLoading"
v-if="viewType != 7" v-if="viewType != 7"
>立即提交 >立即提交
</el-button> </el-button>
<el-button type="primary" @click="submit(1)" <el-button type="primary" @click="submit(1)" :loading="checkLoading"
v-if="viewType == 7">校验结果提交 v-if="viewType == 7">校验结果提交
</el-button> </el-button>
<el-button type="primary" @click="submit(2)" <el-button type="primary" @click="submit(2)" :loading="codeLoading"
v-if="viewType == 7">扫码结果提交 v-if="viewType == 7">扫码结果提交
</el-button> </el-button>
<el-button size="mini" type="primary" @click.native="revokeBill()" <el-button size="mini" type="primary" @click.native="revokeBill()" :loading="retractLoading"
v-if="viewType == 7">撤回单据 v-if="viewType == 7">撤回单据
</el-button> </el-button>
@ -820,7 +820,11 @@ export default {
checkTipDialogVisible: false, checkTipDialogVisible: false,
checkTip: null, checkTip: null,
enableSick: false, enableSick: false,
saveLoading: false,
submitLoading: false,
checkLoading: false,
codeLoading: false,
retractLoading: false,
// //
selectInvProductVisible: false, selectInvProductVisible: false,
@ -1473,9 +1477,10 @@ export default {
}) })
.then(() => { .then(() => {
let query = {billNo: this.orderFormData.billNo}; let query = {billNo: this.orderFormData.billNo};
this.retractLoading = true
rollbackWaitcheck(query) rollbackWaitcheck(query)
.then((response) => { .then((response) => {
this.retractLoading = false
if (response.code == 20000) { if (response.code == 20000) {
this.$message.success("撤回成功!"); this.$message.success("撤回成功!");
this.closeDialog(); this.closeDialog();
@ -1484,6 +1489,7 @@ export default {
} }
}) })
.catch(() => { .catch(() => {
this.retractLoading = false
}); });
}) })
.catch(() => { .catch(() => {
@ -1498,6 +1504,7 @@ export default {
// //
submitCodeResult(query) { submitCodeResult(query) {
submitCodeResult(query).then((response) => { submitCodeResult(query).then((response) => {
this.codeLoading = false
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success("提交成功"); this.$message.success("提交成功");
this.closeDialog(); this.closeDialog();
@ -1510,6 +1517,7 @@ export default {
// //
submitCheckResult(query) { submitCheckResult(query) {
submitCheckResult(query).then((response) => { submitCheckResult(query).then((response) => {
this.checkLoading = false
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success("提交成功"); this.$message.success("提交成功");
this.closeDialog(); this.closeDialog();
@ -1548,8 +1556,27 @@ export default {
); );
tQuery.orderId = this.orderFormData.billNo; tQuery.orderId = this.orderFormData.billNo;
console.log(tQuery.orderId); console.log(tQuery.orderId);
if (val == 1){
//btn
this.checkLoading = true
}else if (val == 2){
//btn
this.codeLoading = true
}else {
this.submitLoading = true
}
if (this.viewType == 2) { // if (this.viewType == 2) { //
submitCodes(tQuery).then((response) => { submitCodes(tQuery).then((response) => {
if (val == 1){
//btn
this.checkLoading = false
}else if (val == 2){
//btn
this.codeLoading = false
}else {
this.submitLoading = false
}
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success("提交成功,等待处理,请刷新后查看!"); this.$message.success("提交成功,等待处理,请刷新后查看!");
this.closeDialog(); this.closeDialog();
@ -1563,6 +1590,15 @@ export default {
else else
tQuery.fromVailPi = 1; tQuery.fromVailPi = 1;
submitBiz(tQuery).then((response) => { submitBiz(tQuery).then((response) => {
if (val == 1){
//btn
this.checkLoading = false
}else if (val == 2){
//btn
this.codeLoading = false
}else {
this.submitLoading = false
}
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success("提交成功"); this.$message.success("提交成功");
this.closeDialog(); this.closeDialog();
@ -1572,6 +1608,16 @@ export default {
}); });
} else if (this.viewType == 4) { } else if (this.viewType == 4) {
submitAllocateBiz(tQuery).then((response) => { submitAllocateBiz(tQuery).then((response) => {
if (val == 1){
//btn
this.checkLoading = false
}else if (val == 2){
//btn
this.codeLoading = false
}else {
this.submitLoading = false
}
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success("提交成功"); this.$message.success("提交成功");
this.closeDialog(); this.closeDialog();
@ -1587,9 +1633,11 @@ export default {
type: "warning", type: "warning",
}) })
.then(() => { .then(() => {
this.checkLoading = true
this.submitCheckResult(tQuery); this.submitCheckResult(tQuery);
}) })
.catch(() => { .catch(() => {
this.this.checkLoading = false
}); });
} else { } else {
@ -1599,14 +1647,17 @@ export default {
type: "warning", type: "warning",
}) })
.then(() => { .then(() => {
this.codeLoading = true
this.submitCodeResult(tQuery); this.submitCodeResult(tQuery);
}) })
.catch(() => { .catch(() => {
this.codeLoading = false
}); });
} }
} else { // } else { //
submitOrderWeb(tQuery).then((response) => { submitOrderWeb(tQuery).then((response) => {
this.submitLoading = false
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success("提交成功"); this.$message.success("提交成功");
this.closeDialog(); this.closeDialog();
@ -1627,13 +1678,16 @@ export default {
this.$message.error("请先录入单据信息!"); this.$message.error("请先录入单据信息!");
return; return;
} }
this.saveLoading = true
saveOrderWeb(tQuery).then((response) => { saveOrderWeb(tQuery).then((response) => {
this.saveLoading = false
if (response.code === 20000) { if (response.code === 20000) {
this.closeDialog(); this.closeDialog();
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
} }
this.loading = false; this.loading = false;
this.saveLoading = false
}); });
}, },

@ -465,6 +465,7 @@ export default {
multipleSelection: [], multipleSelection: [],
selectbox: [], selectbox: [],
selectRow: null, selectRow: null,
combineLoading: false
}; };
}, },
components: {}, components: {},
@ -504,8 +505,10 @@ export default {
}, },
// //
combine() { combine() {
this.combineLoading = true
this.closeDialogtwo(); this.closeDialogtwo();
this.$emit("giveselectbox", this.selectbox); this.$emit("giveselectbox", this.selectbox);
this.combineLoading = false
}, },
// //

@ -62,7 +62,7 @@
</el-row> </el-row>
<div style="text-align: right;margin-top: 20px"> <div style="text-align: right;margin-top: 20px">
<el-button @click="cancelDialog"> </el-button> <el-button @click="cancelDialog"> </el-button>
<el-button type="primary" @click="saveCode()"> </el-button> <el-button type="primary" @click="saveCode()" :loading="determineLoading"> </el-button>
</div> </div>
</el-form> </el-form>
</div> </div>
@ -108,15 +108,18 @@ export default {
isExpireDate: false, isExpireDate: false,
isBatchNo: false, isBatchNo: false,
isSerialNo: false, isSerialNo: false,
determineLoading: false,
}; };
}, },
methods: { methods: {
saveCode() { saveCode() {
this.determineLoading = true
if (this.editType == 1) { if (this.editType == 1) {
// //
if (!isBlank(this.editData.serialNo)) { if (!isBlank(this.editData.serialNo)) {
checkTempCode(this.editData).then((response) => { checkTempCode(this.editData).then((response) => {
this.determineLoading = false
if (response.code === 20000) { if (response.code === 20000) {
this.repeatAddCode(this.editData); this.repeatAddCode(this.editData);
return return
@ -126,6 +129,7 @@ export default {
} }
}); });
} else { } else {
this.determineLoading = false
this.repeatAddCode(this.editData); this.repeatAddCode(this.editData);
} }
@ -143,6 +147,7 @@ export default {
} else { } else {
saveCode(this.editData) saveCode(this.editData)
.then((response) => { .then((response) => {
this.determineLoading = false
console.log(response) console.log(response)
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success("提交成功"); this.$message.success("提交成功");
@ -152,6 +157,7 @@ export default {
this.$message.error(response.message); this.$message.error(response.message);
} }
this.loading = false; this.loading = false;
this.determineLoading = false
}); });
} }

@ -6,12 +6,14 @@
<el-button <el-button
type="primary" type="primary"
@click.native="checkFinish()" @click.native="checkFinish()"
:loading="finishLoading"
>完成审核 >完成审核
</el-button </el-button
> >
<el-button <el-button
type="primary" type="primary"
@click.native="renewAccept()" @click.native="renewAccept()"
:loading="renewAcceptLoading"
>重新审核 >重新审核
</el-button </el-button
> >
@ -182,6 +184,8 @@ export default {
}, },
isEntrust: false, isEntrust: false,
finishLoading: false,
renewAcceptLoading: false,
} }
}, },
@ -371,9 +375,9 @@ export default {
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
this.postAccept(); this.postAccept();
}).catch(() => { }).catch(() => {
// this.$message.info('退'); // this.$message.info('退');
this.finishLoading = false
}); });
}, },
@ -382,9 +386,11 @@ export default {
orderId: this.orderQuery.billNo, orderId: this.orderQuery.billNo,
entrust: this.isEntrust, entrust: this.isEntrust,
}; };
this.finishLoading = true
if (this.reviewType != null && this.reviewType == 2) { if (this.reviewType != null && this.reviewType == 2) {
thirdUpdateStatus(query) thirdUpdateStatus(query)
.then((response) => { .then((response) => {
this.finishLoading = false
if (response.code == 20000) { if (response.code == 20000) {
this.$message.success("核对成功!"); this.$message.success("核对成功!");
this.closeDialog(); this.closeDialog();
@ -394,11 +400,13 @@ export default {
} }
}) })
.catch(() => { .catch(() => {
this.finishLoading = false
}); });
} else { } else {
updateStatus(query) updateStatus(query)
.then((response) => { .then((response) => {
this.finishLoading = false
if (response.code == 20000) { if (response.code == 20000) {
this.$message.success("审核成功!"); this.$message.success("审核成功!");
this.closeDialog(); this.closeDialog();
@ -408,6 +416,7 @@ export default {
} }
}) })
.catch(() => { .catch(() => {
this.finishLoading = false
}); });
} }
}, },
@ -416,13 +425,16 @@ export default {
let query = { let query = {
billNo: this.orderQuery.billNo, billNo: this.orderQuery.billNo,
} }
this.renewAcceptLoading = true
acceptClear(query) acceptClear(query)
.then((response) => { .then((response) => {
this.renewAcceptLoading = false
this.detailLoading = false; this.detailLoading = false;
this.detailList = response.data.orderDetailEntities || []; this.detailList = response.data.orderDetailEntities || [];
this.formData = response.data.orderEntity; this.formData = response.data.orderEntity;
}) })
.catch(() => { .catch(() => {
this.renewAcceptLoading = false
this.detailLoading = false; this.detailLoading = false;
this.detailList = []; this.detailList = [];
}); });

@ -6,12 +6,14 @@
<el-button <el-button
type="primary" type="primary"
@click.native="checkFinish()" @click.native="checkFinish()"
:loading="finishLoading"
>完成审核 >完成审核
</el-button </el-button
> >
<el-button <el-button
type="primary" type="primary"
@click.native="renewAccept()" @click.native="renewAccept()"
:loading="renewAcceptLoading"
>重新审核 >重新审核
</el-button </el-button
> >
@ -117,6 +119,7 @@
import A from "../../plugins/KeyScaner" import A from "../../plugins/KeyScaner"
import {updateStatus, enterCodeWeb, thirdUpdateStatus} from "@/api/inout/order"; import {updateStatus, enterCodeWeb, thirdUpdateStatus} from "@/api/inout/order";
import {getAcceptOrder, acceptClear, acceptAddCode, getAcceptStatus} from "@/api/inout/acceptOrder"; import {getAcceptOrder, acceptClear, acceptAddCode, getAcceptStatus} from "@/api/inout/acceptOrder";
import fa from 'element-ui/src/locale/lang/fa'
export default { export default {
@ -152,6 +155,8 @@ export default {
page: 1, page: 1,
limit: 10, limit: 10,
}, },
finishLoading: false,
renewAcceptLoading: false,
} }
}, },
@ -324,6 +329,7 @@ export default {
}).catch(() => { }).catch(() => {
// this.$message.info('退'); // this.$message.info('退');
this.finishLoading = false
}); });
}, },
@ -331,9 +337,11 @@ export default {
let query = { let query = {
orderId: this.orderQuery.billNo, orderId: this.orderQuery.billNo,
}; };
this.finishLoading = true
if (this.reviewType != null && this.reviewType == 2) { if (this.reviewType != null && this.reviewType == 2) {
thirdUpdateStatus(query) thirdUpdateStatus(query)
.then((response) => { .then((response) => {
this.finishLoading = false
if (response.code == 20000) { if (response.code == 20000) {
this.$message.success("核对成功!"); this.$message.success("核对成功!");
this.closeDialog(); this.closeDialog();
@ -343,11 +351,13 @@ export default {
} }
}) })
.catch(() => { .catch(() => {
this.finishLoading = false
}); });
} else { } else {
updateStatus(query) updateStatus(query)
.then((response) => { .then((response) => {
this.finishLoading = false
if (response.code == 20000) { if (response.code == 20000) {
this.$message.success("审核成功!"); this.$message.success("审核成功!");
this.closeDialog(); this.closeDialog();
@ -357,6 +367,7 @@ export default {
} }
}) })
.catch(() => { .catch(() => {
this.finishLoading = false
}); });
} }
}, },
@ -365,12 +376,15 @@ export default {
let query = { let query = {
billNo: this.orderQuery.billNo, billNo: this.orderQuery.billNo,
} }
this.renewAcceptLoading = true
acceptClear(query) acceptClear(query)
.then((response) => { .then((response) => {
this.renewAcceptLoading = false
this.detailLoading = false; this.detailLoading = false;
this.detailList = response.data.orderDetailEntities || []; this.detailList = response.data.orderDetailEntities || [];
}) })
.catch(() => { .catch(() => {
this.renewAcceptLoading = false
this.detailLoading = false; this.detailLoading = false;
this.detailList = []; this.detailList = [];
}); });

@ -86,7 +86,7 @@
>重置 >重置
</el-button> </el-button>
<el-button type="primary" icon="el-icon-search" @click="submitFind"></el-button> <el-button type="primary" icon="el-icon-search" @click="submitFind"></el-button>
<el-button type="primary" icon="el-icon-check" @click="combine" <el-button type="primary" icon="el-icon-check" @click="combine" :loading="determineLoading"
>确定 >确定
</el-button </el-button
> >
@ -235,6 +235,7 @@ export default {
}, },
], ],
}, },
determineLoading: false,
}; };
}, },
methods: { methods: {
@ -330,8 +331,10 @@ export default {
locStorageCode: this.curLocInv, locStorageCode: this.curLocInv,
invWarehouseCode: this.currentRow.invWarehouseCode, invWarehouseCode: this.currentRow.invWarehouseCode,
} }
this.determineLoading = true
addThrOrder(tQuery) addThrOrder(tQuery)
.then((response) => { .then((response) => {
this.determineLoading = false
if (response.code === 20000) { if (response.code === 20000) {
this.closeDialog(); this.closeDialog();
} else { } else {
@ -339,6 +342,7 @@ export default {
} }
}) })
.catch(() => { .catch(() => {
this.determineLoading = false
}); });
}, },
hideSearch() { hideSearch() {

@ -5,7 +5,7 @@
<el-row type="flex" justify="end"> <el-row type="flex" justify="end">
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px;margin-top: 10px"> <el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px;margin-top: 10px">
<el-button type="primary" @click.native="determineBtn()" :loading="loading">确认</el-button> <el-button type="primary" @click.native="determineBtn()" :loading="determineLoading">确认</el-button>
<el-button type="primary" @click.native="closeDialog(false)" :loading="loading">取消</el-button> <el-button type="primary" @click.native="closeDialog(false)" :loading="loading">取消</el-button>
</el-button-group> </el-button-group>
</el-row> </el-row>
@ -299,6 +299,7 @@ export default {
list: [], list: [],
total: 0, total: 0,
loading: false, loading: false,
determineLoading: false,
index: null, index: null,
enableDept: false, enableDept: false,
showSup: false, showSup: false,
@ -465,18 +466,23 @@ export default {
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning", type: "warning",
}).then(() => { }).then(() => {
this.determineLoading = true
updateOrder(data).then((res) => { updateOrder(data).then((res) => {
this.determineLoading = false
this.closeDialog(); this.closeDialog();
}).catch((error) => { }).catch((error) => {
}) })
}).catch(() => { }).catch(() => {
this.determineLoading = false
}) })
} else { } else {
this.determineLoading = true
updateOrder(data).then((res) => { updateOrder(data).then((res) => {
this.determineLoading = false
this.closeDialog(); this.closeDialog();
}).catch((error) => { }).catch((error) => {
this.determineLoading = false
}) })
} }

@ -176,7 +176,7 @@
<el-form-item style="text-align: center;"> <el-form-item style="text-align: center;">
<el-button-group> <el-button-group>
<el-button type="primary" @click="onInfoSubmit" <el-button type="primary" @click="onInfoSubmit" :loading="submitLoading"
>提交 >提交
</el-button> </el-button>
</el-button-group> </el-button-group>
@ -289,6 +289,7 @@ export default {
], ],
}, },
actDateRange: [], actDateRange: [],
submitLoading: false
} }
}, },
computed: { computed: {
@ -395,8 +396,9 @@ export default {
this.$message.error('住院号不能为空') this.$message.error('住院号不能为空')
return return
} }
this.submitLoading = true
addInfoSkSicker(this.addInfo).then((response) => { addInfoSkSicker(this.addInfo).then((response) => {
this.submitLoading = false
if (response.code === 20000) { if (response.code === 20000) {
this.$message.success(response.data) this.$message.success(response.data)
this.addInfo = { this.addInfo = {
@ -419,7 +421,7 @@ export default {
}) })
.catch((error) => { .catch((error) => {
this.$message.error(error.message) this.$message.error(error.message)
this.submitLoading = false
}) })
}, },
enterPatientInfo() { enterPatientInfo() {

@ -81,7 +81,7 @@
</el-form> </el-form>
<div style="text-align: right; margin-top: 10px;"> <div style="text-align: right; margin-top: 10px;">
<el-button type="primary" size="small" icon="search" @click="updateOrderInfo" <el-button type="primary" size="small" icon="search" @click="updateOrderInfo" :loading="updateOrderInfoLoading"
>提交 >提交
</el-button </el-button
> >
@ -149,7 +149,8 @@ export default {
let nowDate = new Date(time).getTime(); let nowDate = new Date(time).getTime();
return (nowDate > endDate); return (nowDate > endDate);
} }
} },
updateOrderInfoLoading: false
}; };
}, },
components: {}, components: {},
@ -207,13 +208,16 @@ export default {
auditTime: this.auditTime, auditTime: this.auditTime,
orderIds: [this.filterQuery.orderId] orderIds: [this.filterQuery.orderId]
}; };
this.updateOrderInfoLoading = true
updateOrderInfo(params).then((res) => { updateOrderInfo(params).then((res) => {
this.updateOrderInfoLoading = false
if (res.code === 20000) { if (res.code === 20000) {
this.$message.success("修改成功"); this.$message.success("修改成功");
this.getList(); this.getList();
this.getOrderList(); this.getOrderList();
} }
}).catch((error) => { }).catch((error) => {
this.updateOrderInfoLoading = false
this.$message.error(error.message); this.$message.error(error.message);
}) })
}, },

@ -3,8 +3,8 @@
<el-card style="margin: 5px;"> <el-card style="margin: 5px;">
<el-form :model="inputQuery" label-width="110px" style="margin-bottom: -15px"> <el-form :model="inputQuery" label-width="110px" style="margin-bottom: -15px">
<el-button-group style="display: flex; margin: 0px 0 15px 75%; height: 35px"> <el-button-group style="display: flex; margin: 0px 0 15px 75%; height: 35px">
<el-button size="mini" type="primary" @click.native="saveOrder(2)">审核通过</el-button> <el-button size="mini" type="primary" @click.native="saveOrder(2)" :loading="passLoading">审核通过</el-button>
<el-button size="mini" type="primary" @click.native="saveOrder(3)">审核拒绝</el-button> <el-button size="mini" type="primary" @click.native="saveOrder(3)" :loading="noPassLoading">审核拒绝</el-button>
</el-button-group> </el-button-group>
<el-row> <el-row>
<el-col :span="17"> <el-col :span="17">
@ -130,6 +130,8 @@ export default {
fromInvOptions: [], fromInvOptions: [],
busTypes: [], busTypes: [],
detailList: [], detailList: [],
passLoading: false,
noPassLoading: false,
} }
}, },
methods: { methods: {
@ -182,7 +184,17 @@ export default {
id:this.pId, id:this.pId,
status:status status:status
} }
if (status === 2){
this.passLoading = true
}else {
this.noPassLoading = true
}
auditMuti(query).then((response) => { auditMuti(query).then((response) => {
if (status === 2){
this.passLoading = false
}else {
this.noPassLoading = false
}
if (response.code == 20000) { if (response.code == 20000) {
this.closeDialog() this.closeDialog()
} else { } else {

@ -3,8 +3,8 @@
<el-card style="margin: 5px;"> <el-card style="margin: 5px;">
<el-form :model="inputQuery" label-width="110px" style="margin-bottom: -15px"> <el-form :model="inputQuery" label-width="110px" style="margin-bottom: -15px">
<el-button-group style="display: flex; margin: 0px 0 15px 75%; height: 35px"> <el-button-group style="display: flex; margin: 0px 0 15px 75%; height: 35px">
<el-button size="mini" type="primary" @click.native="saveOrder(0)">草稿保存</el-button> <el-button size="mini" type="primary" @click.native="saveOrder(0)" :loading="draftLoading">草稿保存</el-button>
<el-button size="mini" type="primary" @click.native="saveOrder(1)">立即提交</el-button> <el-button size="mini" type="primary" @click.native="saveOrder(1)" :loading="submitLoading">立即提交</el-button>
</el-button-group> </el-button-group>
<el-row> <el-row>
<el-col :span="17"> <el-col :span="17">
@ -166,6 +166,8 @@ export default {
nextTime: '',// nextTime: '',//
lastCode: '', lastCode: '',
nextCode: '',// nextCode: '',//
draftLoading: false,
submitLoading: false,
} }
}, },
mounted() { mounted() {
@ -403,7 +405,17 @@ export default {
totalCount: this.inputQuery.totalCount, totalCount: this.inputQuery.totalCount,
status: status status: status
} }
if (status === 0){
this.draftLoading = true
}else {
this.submitLoading = true
}
updateOrderMuti(query).then((response) => { updateOrderMuti(query).then((response) => {
if (status == 0){
this.draftLoading = false
}else {
this.submitLoading = false
}
if (response.code == 20000) { if (response.code == 20000) {
this.closeDialog() this.closeDialog()
} else { } else {

@ -174,7 +174,7 @@
</template> </template>
<div style='text-align: center; margin-bottom: 10px;margin-top: 18px ;'> <div style='text-align: center; margin-bottom: 10px;margin-top: 18px ;'>
<el-button @click="closeDialog"></el-button> <el-button @click="closeDialog"></el-button>
<el-button type="primary" @click="submitInv"></el-button> <el-button type="primary" @click="submitInv" :loading="submitLoading">提交</el-button>
</div> </div>
</el-form> </el-form>
</el-card> </el-card>
@ -220,6 +220,7 @@ export default {
}, },
fromInvOptions: [], fromInvOptions: [],
busTypes: [], busTypes: [],
submitLoading: false,
} }
}, },
methods: { methods: {
@ -267,8 +268,10 @@ export default {
this.$message.error("生成单据类型不能为空!"); this.$message.error("生成单据类型不能为空!");
return return
} }
this.submitLoading = true
if(this.formName==1){ if(this.formName==1){
addMuti(this.inputQuery).then((response) => { addMuti(this.inputQuery).then((response) => {
this.submitLoading = false
if(response.code == 20000){ if(response.code == 20000){
this.closeDialog(); this.closeDialog();
}else{ }else{
@ -277,10 +280,12 @@ export default {
}) })
.catch(() => { .catch(() => {
this.submitLoading = false
this.$message.error("添加失败"); this.$message.error("添加失败");
}); });
}else{ }else{
updateMuti(this.inputQuery).then((response) => { updateMuti(this.inputQuery).then((response) => {
this.submitLoading = false
if(response.code == 20000){ if(response.code == 20000){
this.closeDialog(); this.closeDialog();
}else{ }else{
@ -289,6 +294,7 @@ export default {
}) })
.catch(() => { .catch(() => {
this.submitLoading = false
this.$message.error("添加失败"); this.$message.error("添加失败");
}); });
} }

Loading…
Cancel
Save