|
@@ -139,13 +139,13 @@
|
|
</div>
|
|
</div>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :span="7" style="text-align: right;">
|
|
<a-col :span="7" style="text-align: right;">
|
|
- <a-button
|
|
|
|
- type="danger"
|
|
|
|
- ghost
|
|
|
|
- size="small"
|
|
|
|
- @click="openGuideModal=true"
|
|
|
|
- style="margin-right: 5px"
|
|
|
|
- id="chainTransferOutEdit-import-btn">产品导入</a-button>
|
|
|
|
|
|
+ <a-button
|
|
|
|
+ type="danger"
|
|
|
|
+ ghost
|
|
|
|
+ size="small"
|
|
|
|
+ @click="openGuideModal=true"
|
|
|
|
+ style="margin-right: 5px"
|
|
|
|
+ id="chainTransferOutEdit-import-btn">产品导入</a-button>
|
|
<a-button
|
|
<a-button
|
|
size="small"
|
|
size="small"
|
|
type="primary"
|
|
type="primary"
|
|
@@ -187,7 +187,7 @@
|
|
style="padding: 0 60px;">提交</a-button>
|
|
style="padding: 0 60px;">提交</a-button>
|
|
</div>
|
|
</div>
|
|
<!-- 导入产品 -->
|
|
<!-- 导入产品 -->
|
|
- <importGuideModal :openModal="openGuideModal" :params="{allocationLinkageOutSn: $route.params.sn}" @close="openGuideModal=false" @ok="resetSearchForm" />
|
|
|
|
|
|
+ <importGuideModal :openModal="openGuideModal" :params="{allocationLinkageOutSn: $route.params.sn}" @close="openGuideModal=false" @ok="pageInit" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -195,7 +195,7 @@
|
|
import { commonMixin } from '@/utils/mixin'
|
|
import { commonMixin } from '@/utils/mixin'
|
|
import { STable, VSelect } from '@/components'
|
|
import { STable, VSelect } from '@/components'
|
|
import { getOperationalPrecision } from '@/libs/tools.js'
|
|
import { getOperationalPrecision } from '@/libs/tools.js'
|
|
-import { allocLinkageOutDetailSn, allocLinkageOutDetailList, allocLinkageOutDetailSave, allocLinkageOutDetailDel, allocLinkageOutDetailCount, allocLinkageOutSubmit, allocLinkageOutDetailDelAll, allocLinkageOutDetailPrint,importProductInsertBatch } from '@/api/allocLinkageOut'
|
|
|
|
|
|
+import { allocLinkageOutDetailSn, allocLinkageOutDetailList, allocLinkageOutDetailSave, allocLinkageOutDetailDel, allocLinkageOutDetailCount, allocLinkageOutSubmit, allocLinkageOutDetailDelAll, allocLinkageOutDetailPrint, importProductInsertBatch } from '@/api/allocLinkageOut'
|
|
import { productQuery } from '@/api/allocWarehouse'
|
|
import { productQuery } from '@/api/allocWarehouse'
|
|
import ProductType from '../../common/productType.js'
|
|
import ProductType from '../../common/productType.js'
|
|
import ProductBrand from '../../common/productBrand.js'
|
|
import ProductBrand from '../../common/productBrand.js'
|
|
@@ -205,7 +205,7 @@ import { hdPrint } from '@/libs/JGPrint'
|
|
import importGuideModal from './importGuideModal.vue'
|
|
import importGuideModal from './importGuideModal.vue'
|
|
export default {
|
|
export default {
|
|
name: 'AllocLinkageOutEdit',
|
|
name: 'AllocLinkageOutEdit',
|
|
- components: { STable, VSelect, Print, ProductType, ProductBrand ,importGuideModal},
|
|
|
|
|
|
+ components: { STable, VSelect, Print, ProductType, ProductBrand, importGuideModal },
|
|
mixins: [commonMixin],
|
|
mixins: [commonMixin],
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|
|
@@ -224,7 +224,7 @@ export default {
|
|
warehouseList: [], // 仓库 下拉数据
|
|
warehouseList: [], // 仓库 下拉数据
|
|
disabled: false, // 查询、重置按钮是否可操作
|
|
disabled: false, // 查询、重置按钮是否可操作
|
|
chooseDisabled: false,
|
|
chooseDisabled: false,
|
|
- openGuideModal:false,
|
|
|
|
|
|
+ openGuideModal: false,
|
|
advanced: false, // 高级搜索 展开/关闭
|
|
advanced: false, // 高级搜索 展开/关闭
|
|
// 加载数据方法 必须为 Promise 对象
|
|
// 加载数据方法 必须为 Promise 对象
|
|
loadData: parameter => {
|
|
loadData: parameter => {
|