|
@@ -66,6 +66,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+ import alertModal from '../../../../plugins/modal'
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
|
import JEllipsis from '@/components/jeecg/JEllipsis'
|
|
|
import { httpAction ,getAction,postAction,putAction} from '@/api/manage'
|
|
@@ -408,9 +409,12 @@
|
|
|
this.$message.warning('请输入框运费、扇运费、本次执行扇数量、本次执行框数量')
|
|
|
}else{
|
|
|
this.loading =true
|
|
|
+ alertModal.loading("执行中,请稍后!")
|
|
|
postAction('/productionOrder/madeProductionOrders/outMadeProductionOrdersOutList', {madeProductionOrdersInList:this.selectedRows}).then((res) => {
|
|
|
+ alertModal.closeLoading();
|
|
|
if (res.success) {
|
|
|
this.$emit('ok')
|
|
|
+ this.$message.success('执行成功');
|
|
|
this.handleCancel()
|
|
|
} else {
|
|
|
this.$message.error(res.message);
|