| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <template>
- <ele-modal title="委外领料" :visible.sync="visible" :before-close="handleClose" :close-on-click-modal="false"
- :maxable="true"
- :close-on-press-escape="false" append-to-body width="60%">
-
- <template slot="footer">
- <el-button size="mini" @click="handleClose">取 消</el-button>
- <el-button size="mini" type="primary" @click="save()">确 定</el-button>
- </template>
- </ele-modal>
- </template>
- <script>
- import pickingList from './pickingList.vue';
- import { workorderList, getCode,getInventoryTotal,znworkorderList } from '@/api/produce/workOrder';
- import { typeName } from '../common.js';
- import { batchSave,znfindVoucherList } from '@/api/produce/picking';
- export default {
- components: {
- pickingList
- },
- props: {
- workListIds: {
- type: Array,
- default() {
- return [];
- }
- }
- },
- data() {
- return {
- visible: true,
-
- };
- },
- computed: {
- taskObj() {
- return this.$store.state.user.taskObj;
- },
- clientEnvironmentId() {
- return this.$store.state.user.info.clientEnvironmentId;
- }
- },
- watch: {},
- methods: {
-
-
- handleClose() {
- this.$emit('closeOutsourcingPicking', false);
- },
-
- save() {
-
-
-
- }
- },
- created() {
- }
- };
- </script>
- <style lang="scss" scoped>
- .table_content {
- margin-bottom: 10px;
- }
- .tableZ_box {
- border: 1px solid #e3e5e5;
- margin: 6px 0;
- &:last-child {
- border-bottom: none;
- }
- .row {
- width: 100%;
- display: flex;
- }
- .col {
- width: calc(100% / 5);
- display: flex;
- align-items: center;
- min-width: 200px;
- min-height: 32px;
- border-bottom: 1px solid #e3e5e5;
- border-right: 1px solid #e3e5e5;
- &:last-child {
- border-right: none;
- }
- .name {
- display: flex;
- align-items: center;
- padding: 4px;
- width: 80px;
- height: 100%;
- background-color: #d0e4d5;
- color: #000;
- }
- .content {
- padding: 4px 6px;
- color: #000;
- }
- }
- .pd6 {
- padding: 0 6px;
- }
- }
- </style>
- <style>
- :v-deep .el-form-item__error {
- bottom: -6px !important;
- }
- </style>
|