|
@@ -61,7 +61,6 @@
|
|
|
</a-descriptions-item>
|
|
|
<a-descriptions-item label="业务状态">{{ detailData&&detailData.billStatusDictValue || '--' }}</a-descriptions-item>
|
|
|
<a-descriptions-item label="备注">{{ detailData&&detailData.remarks || '--' }}</a-descriptions-item>
|
|
|
- <a-descriptions-item label="唯一码"><span class="link-bule" @click="showCodeModal = true">查看</span></a-descriptions-item>
|
|
|
</a-descriptions>
|
|
|
</a-collapse-panel>
|
|
|
</a-collapse>
|
|
@@ -118,13 +117,6 @@
|
|
|
<export-excel-modal :openModal="openExcelModal" :itemData="detailData" @ok="handleExcelOk" @close="openExcelModal=false" />
|
|
|
<!-- 打印 -->
|
|
|
<div id="print"></div>
|
|
|
- <!-- 唯一码 -->
|
|
|
- <uniqueCodeModal
|
|
|
- ref="uniqueCode"
|
|
|
- modalTit="轮胎唯一码"
|
|
|
- :openModal="showCodeModal"
|
|
|
- @choose="getProductTotal"
|
|
|
- @cancel="showCodeModal=false"></uniqueCodeModal>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -133,13 +125,12 @@ import { commonMixin } from '@/utils/mixin'
|
|
|
import { STable, VSelect } from '@/components'
|
|
|
import sendTypeModal from './sendTypeModal.vue'
|
|
|
import exportExcelModal from './exportExcelModal.vue'
|
|
|
-import uniqueCodeModal from './uniqueCodeModal.vue'
|
|
|
import { printBase64Fun, exportExcel } from '@/libs/JGPrint.js'
|
|
|
import { dispatchDetaillListForOut, dispatchFindBySn, dispatchDetailPrint, dispatchDetailExcel } from '@/api/dispatch'
|
|
|
export default {
|
|
|
name: 'DetailForOut',
|
|
|
mixins: [commonMixin],
|
|
|
- components: { STable, VSelect, sendTypeModal, exportExcelModal, uniqueCodeModal },
|
|
|
+ components: { STable, VSelect, sendTypeModal, exportExcelModal },
|
|
|
props: {
|
|
|
outBizSubSn: { // 有值则为弹框,无值则为页面
|
|
|
type: [Number, String],
|
|
@@ -194,7 +185,6 @@ export default {
|
|
|
openExcelModal: false,
|
|
|
fromRouter: null,
|
|
|
nowType: 'print',
|
|
|
- showCodeModal: false
|
|
|
}
|
|
|
},
|
|
|
computed: {
|