Browse Source

预约单添加加载效果

dev-xx
马远东 1 year ago
parent
commit
ae259fb218
  1. 14
      src/views/distribution/reservation/reservationAddFrom.vue
  2. 2
      vite.config.js

14
src/views/distribution/reservation/reservationAddFrom.vue

@ -381,7 +381,9 @@
<!-- 库存品信息 -->
<template v-if="stockListShow">
<el-dialog v-model="stockListShow" class="stockListShow" title="库存品信息" width="100%">
<el-dialog v-model="stockListShow" class="stockListShow" title="库存品信息" width="90%">
<div v-loading="Inventoryloading"
element-loading-text="正在拼命加载中...">
<!-- :before-close="handleClose"-->
<!-- <el-form :inline="true" :model="query">-->
<!-- <el-form-item label="商场名称:">-->
@ -439,6 +441,7 @@
</el-button>
<el-button icon="el-icon-circle-close" @click="stockListShow = false"> </el-button>
</el-form-item>
</div>
</el-dialog>
</template>
@ -570,6 +573,7 @@ import { setNodeHeight, removeZeroWidth } from '@/utils/util.js';
export default {
data() {
return {
Inventoryloading:true,//
packageQuery: {},
orderRow: {},
columnList: [
@ -2099,7 +2103,9 @@ export default {
return true;
}
},
handleAddInventory() {
handleAddInventory() {
this.loading = true;
this.Inventoryloading=true;//
let page = this.page;
let params = {};
this.query.serviceType = '2';
@ -2135,14 +2141,15 @@ export default {
}
this.loading = false;
this.selectionClear();
this.stockListShow = true;
this.$nextTick(() => {
const _node = document.querySelector('.stockListShow .maboxhi');
_node.style.transition = 'all 0.3s';
setNodeHeight(_node, '500px');
this.setTableHeight();
this.Inventoryloading=false;//
});
}
);
@ -3275,4 +3282,5 @@ input[type='number'] {
.footer-container {
height: 60px;
}
</style>

2
vite.config.js

@ -23,7 +23,7 @@ export default ({ mode, command }) => {
// 新zyc
// target: 'http://192.168.6.116:8777',
// target: 'http://192.168.6.122:8777',
target: 'http://192.168.10.25:13000',
target: 'http://192.168.10.57:13000',
// target: 'http://192.168.10.25:2888',
// target: 'http://192.168.6.148:9777',//CYZ
// target: 'http://192.168.10.57:13000',

Loading…
Cancel
Save