|
@@ -0,0 +1,211 @@
|
|
|
|
+<template>
|
|
|
|
+ <a-modal
|
|
|
|
+ centered
|
|
|
|
+ class="unique-code-modal"
|
|
|
|
+ :footer="null"
|
|
|
|
+ :maskClosable="false"
|
|
|
|
+ v-model="isShow"
|
|
|
|
+ title="抓取唯一码"
|
|
|
|
+ @cancel="isShow=false"
|
|
|
|
+ width="60%">
|
|
|
|
+ <a-spin :spinning="spinning" tip="Loading...">
|
|
|
|
+ <div class="common-main">
|
|
|
|
+ <!-- 搜索条件 -->
|
|
|
|
+ <div ref="tableSearch" class="table-page-search-wrapper">
|
|
|
|
+ <a-form-model layout="inline" :model="queryParam">
|
|
|
|
+ <a-row :gutter="15">
|
|
|
|
+ <a-col :md="8" :sm="24">
|
|
|
|
+ <a-form-model-item label="产品编码">
|
|
|
|
+ <a-input v-model.trim="queryParam.outBizSubNo" allowClear placeholder="请输入产品编码"/>
|
|
|
|
+ </a-form-model-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="8" :sm="24">
|
|
|
|
+ <a-form-model-item label="产品名称">
|
|
|
|
+ <a-input v-model.trim="queryParam.demanderName" allowClear placeholder="请输入产品名称"/>
|
|
|
|
+ </a-form-model-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <span class="table-page-search-submitButtons">
|
|
|
|
+ <a-button type="primary" :disabled="disabled" @click="$refs.table.refresh(true)">查询</a-button>
|
|
|
|
+ <a-button style="margin-left: 8px" :disabled="disabled" @click="resetSearchForm()">重置</a-button>
|
|
|
|
+ </span>
|
|
|
|
+ </a-col>
|
|
|
|
+ </a-row>
|
|
|
|
+ </a-form-model>
|
|
|
|
+ </div>
|
|
|
|
+ <!-- 表格数据 -->
|
|
|
|
+ <s-table
|
|
|
|
+ class="sTable"
|
|
|
|
+ ref="table"
|
|
|
|
+ size="small"
|
|
|
|
+ :rowKey="(record) => record.id"
|
|
|
|
+ :columns="columns"
|
|
|
|
+ :data="loadData"
|
|
|
|
+ :scroll="{ y: 400 }"
|
|
|
|
+ :showPagination="false"
|
|
|
|
+ bordered>
|
|
|
|
+ <!-- 唯一码 -->
|
|
|
|
+ <template slot="code" slot-scope="text, record">
|
|
|
|
+ <div style="min-height:42px;max-height:64px;overflow-y:scroll;">
|
|
|
|
+ <a-row>
|
|
|
|
+ <a-col :span="20">
|
|
|
|
+ <a-tag style="margin-bottom:10px;" closable @close.prevent="delLabel(record.bizUserScopeSn,con,'typeList')" v-for="i in 10" :key="i">
|
|
|
|
+ SYT158648594{{ i }}
|
|
|
|
+ </a-tag>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :span="4" style="text-align:right;">
|
|
|
|
+ <a-tag style="background: #fff; borderStyle: dashed;" @click="addCodeTag(index, record)" color="blue">
|
|
|
|
+ <a-icon type="plus" /> 选择
|
|
|
|
+ </a-tag>
|
|
|
|
+ </a-col>
|
|
|
|
+ </a-row>
|
|
|
|
+ <!-- <a-row>
|
|
|
|
+ <a-col :span="24" style="line-height:42px;">
|
|
|
|
+ <a-tag style="background: #fff; borderStyle: dashed;" @click="addCodeTag" color="blue">
|
|
|
|
+ <a-icon type="plus" /> 选择
|
|
|
|
+ </a-tag>
|
|
|
|
+ </a-col>
|
|
|
|
+ </a-row> -->
|
|
|
|
+ </div>
|
|
|
|
+ </template>
|
|
|
|
+ </s-table>
|
|
|
|
+ </div>
|
|
|
|
+ </a-spin>
|
|
|
|
+ <!-- 唯一码列表 -->
|
|
|
|
+ <uniqueCodeListModal codeInfo="ysds1241545454" :openModal="openCodeModal" @close="openCodeModal=false" @ok="handleCodeOk" ></uniqueCodeListModal>
|
|
|
|
+ </a-modal>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import { commonMixin } from '@/utils/mixin'
|
|
|
|
+import { STable } from '@/components'
|
|
|
|
+import { stockOutList } from '@/api/stockOut'
|
|
|
|
+import uniqueCodeListModal from './uniqueCodeListModal.vue'
|
|
|
|
+export default {
|
|
|
|
+ name: 'SelectGlOrderModal',
|
|
|
|
+ mixins: [commonMixin],
|
|
|
|
+ components: { STable, uniqueCodeListModal },
|
|
|
|
+ props: {
|
|
|
|
+ openModal: { // 弹框显示状态
|
|
|
|
+ type: Boolean,
|
|
|
|
+ default: false
|
|
|
|
+ },
|
|
|
|
+ modalTit: { // 弹框标题
|
|
|
|
+ type: String,
|
|
|
|
+ default: null
|
|
|
|
+ },
|
|
|
|
+ chooseData: {
|
|
|
|
+ type: Array,
|
|
|
|
+ default: function () {
|
|
|
|
+ return []
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ data () {
|
|
|
|
+ return {
|
|
|
|
+ isShow: this.openModal, // 是否打开弹框
|
|
|
|
+ disabled: false,
|
|
|
|
+ spinning: false,
|
|
|
|
+ handlePlData: [],
|
|
|
|
+ queryParam: {
|
|
|
|
+ outBizSubNo: '',
|
|
|
|
+ demanderName: ''
|
|
|
|
+ },
|
|
|
|
+ orginData: [],
|
|
|
|
+ // 加载数据方法 必须为 Promise 对象
|
|
|
|
+ loadData: parameter => {
|
|
|
|
+ this.disabled = true
|
|
|
|
+ this.spinning = true
|
|
|
|
+ return stockOutList(Object.assign(parameter, this.queryParam)).then(res => {
|
|
|
|
+ let data
|
|
|
|
+ if (res.status == 200) {
|
|
|
|
+ data = res.data
|
|
|
|
+ const no = (data.pageNo - 1) * data.pageSize
|
|
|
|
+ for (var i = 0; i < data.list.length; i++) {
|
|
|
|
+ data.list[i].no = no + i + 1
|
|
|
|
+ const index = this.chooseData.findIndex(item => data.list[i].stockOutSn == item.stockOutSn)
|
|
|
|
+ data.list[i].checked = index >= 0
|
|
|
|
+ }
|
|
|
|
+ this.disabled = false
|
|
|
|
+ }
|
|
|
|
+ this.spinning = false
|
|
|
|
+ this.orginData = data.list
|
|
|
|
+ return data
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ snList: [],
|
|
|
|
+ columns: [
|
|
|
|
+ { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
|
|
|
|
+ { title: '产品编码', dataIndex: 'stockOutNo', width: '15%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '销售数量', dataIndex: 'outBizSubNo', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
|
+ { title: '产品名称', dataIndex: 'demanderName', width: '30%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
|
+ { title: '唯一码', scopedSlots: { customRender: 'code' }, width: '41%', align: 'center' }
|
|
|
|
+ ],
|
|
|
|
+ detailData: null,
|
|
|
|
+ openCodeModal: false
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ addCodeTag () {
|
|
|
|
+ this.openCodeModal = true
|
|
|
|
+ },
|
|
|
|
+ handleCodeOk () {
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ custChange (val) {
|
|
|
|
+ this.queryParam.receiverSn = val.key || ''
|
|
|
|
+ },
|
|
|
|
+ // 删除
|
|
|
|
+ handleDel (row) {
|
|
|
|
+ const i = this.chooseData.findIndex(item => row.stockOutSn == item.stockOutSn)
|
|
|
|
+ this.chooseData.splice(i, 1)
|
|
|
|
+ const oi = this.orginData.findIndex(item => row.stockOutSn == item.stockOutSn)
|
|
|
|
+ if (oi >= 0) {
|
|
|
|
+ this.orginData[oi].checked = false
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ // 选择
|
|
|
|
+ handleChoose (row) {
|
|
|
|
+ row.checked = true
|
|
|
|
+ this.chooseData.push(row)
|
|
|
|
+ this.$emit('choose')
|
|
|
|
+ },
|
|
|
|
+ // 取消
|
|
|
|
+ handleCommonCancel () {
|
|
|
|
+ this.$emit('cancel')
|
|
|
|
+ },
|
|
|
|
+ // 重置
|
|
|
|
+ resetSearchForm () {
|
|
|
|
+ this.queryParam = {
|
|
|
|
+ outBizSubNo: '',
|
|
|
|
+ demanderName: ''
|
|
|
|
+ }
|
|
|
|
+ if (this.$refs.table) {
|
|
|
|
+ this.$refs.table.refresh(true)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ watch: {
|
|
|
|
+ // 父页面传过来的弹框状态
|
|
|
|
+ openModal (newValue, oldValue) {
|
|
|
|
+ this.isShow = newValue
|
|
|
|
+ },
|
|
|
|
+ // 重定义的弹框状态
|
|
|
|
+ isShow (newValue, oldValue) {
|
|
|
|
+ if (!newValue) {
|
|
|
|
+ this.handleCommonCancel()
|
|
|
|
+ } else {
|
|
|
|
+ this.resetSearchForm()
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style lang="less">
|
|
|
|
+ .unique-code-modal{
|
|
|
|
+ .ant-modal-body {
|
|
|
|
+ padding: 30px 40px 40px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+</style>
|