|
@@ -123,7 +123,8 @@
|
|
|
</template>
|
|
|
<!-- 发货说明 -->
|
|
|
<template slot="explainInfo" slot-scope="text, record">
|
|
|
- <span class="link-bule" @click="handleExplainInfo(record)" :title="record.explainInfo">{{ record.explainInfo||'--' }}</span>
|
|
|
+ <span v-if="record.explainInfo" class="link-bule" @click="handleExplainInfo(record)" :title="record.explainInfo">{{ record.explainInfo||'--' }}</span>
|
|
|
+ <span v-else>--</span>
|
|
|
</template>
|
|
|
<!-- 备货打印状态 -->
|
|
|
<template slot="printStatus" slot-scope="text, record">
|
|
@@ -173,7 +174,7 @@
|
|
|
<dispatchDetail v-if="detailType==1" ref="dispatchDetail" :bizSn="bizSn"></dispatchDetail>
|
|
|
</commonModal>
|
|
|
<!-- 操作提示 -->
|
|
|
- <commonModal modalTit="操作提示" :openModal="showPrintModal" @cancel="canselModal" @ok="updatePrintStatus">
|
|
|
+ <commonModal modalTit="操作提示" okText="暂不打印" :openModal="showPrintModal" @cancel="canselModal" @ok="updatePrintStatus">
|
|
|
<div style="text-align: center;">
|
|
|
<div style="margin-bottom: 15px;font-size: 14px;">如需将打印状态回退至<strong>【暂不打印】</strong>,请点击下方按钮</div>
|
|
|
<div style="line-height: 24px;">
|