@@ -704,6 +704,9 @@ export default {
loadingTime: [],
/** 签收时间 */
signingTime: [],
+ loadingObj: {
+ pageLoading: true,
+ },
onLoad: debounce(async function (page, params = {}) {
this.loading = true;
try {
@@ -753,43 +756,70 @@ export default {
},
methods: {
//批量查看二维码
- batchHandQrCode() {
- console.log(' this.selectionList--------->', this.selectionList);
- if (this.selectionList.length <= 0) {
- this.$message.warning('请选择包件');
- return;
+ async batchHandQrCode() {
+ try {
+ this.loadingObj.pageLoading = true;
+
+ console.log(' this.selectionList--------->', this.selectionList);
+ if (this.selectionList.length <= 0) {
+ this.$message.warning('请选择包件');
+ return;
+ }
+ const idsArr = this.selectionList.map(item => {
+ return item.id;
+ });
+ let qr = {
+ ids: idsArr.join(','),
+ };
+ this.html = '';
+ const res = await showOrderPackgeCode(qr);
+
+ const { code, data } = res.data;
+
+ if (code !== 200) return;
+
+ for (let i = 0; i < data.moldList.length; i++) {
+ const element = data.moldList[i];
+ this.html += element;
+ }
+
+ this.dialogVisibleF = true;
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ this.loadingObj.pageLoading = false;
}
- const data = this.selectionList.map(item => {
- return item.id;
- });
- let qr = {
- ids: data.join(','),
- };
- this.html = '';
- showOrderPackgeCode(qr).then(res => {
- // this.orderPackageCode = res.data
- console.log(res.data);
- this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
- });
- this.dialogVisibleF = true;
},
//查看二维码
- handleQRCode(scope) {
- const { row } = scope;
- console.log('执行查看二维码');
- this.materialQRCode = row;
- console.log('---------------->', row);
- let qr = {
- ids: row.id,
- };
- this.html = '';
- showOrderPackgeCode(qr).then(res => {
- // this.orderPackageCode = res.data
- console.log(res.data);
- this.html = this.getHtmls(res.data.data.dataList, res.data.data.templateHtml);
- });
+ async handleQRCode(scope) {
+ try {
+ this.loadingObj.pageLoading = true;
+
+ const { row } = scope;
+ console.log('执行查看二维码');
+ this.materialQRCode = row;
+ console.log('---------------->', row);
+ let qr = {
+ ids: row.id,
+ };
+ this.html = '';
+ const res = await showOrderPackgeCode(qr);
- this.dialogVisibleF = true;
+ const { code, data } = res.data;
+
+ if (code !== 200) return;
+
+ for (let i = 0; i < data.moldList.length; i++) {
+ const element = data.moldList[i];
+ this.html += element;
+ }
+
+ this.dialogVisibleF = true;
+ } catch (error) {
+ console.log('error :>> ', error);
+ } finally {
+ this.loadingObj.pageLoading = false;
+ }
},
ViewingTrajectories(scope) {
console.log(scope, '执行查看轨迹');