|
|
|
@ -16,7 +16,7 @@
|
|
|
|
|
style="transform: rotate(90deg); position: relative; left: 4px; bottom: -2px"
|
|
|
|
|
@click="toPage('next')"
|
|
|
|
|
></dt>
|
|
|
|
|
<dd>{{ nexttext ? nexttext : '上一票' }}</dd>
|
|
|
|
|
<dd>{{ nexttext }}</dd>
|
|
|
|
|
</dl>
|
|
|
|
|
<dl>
|
|
|
|
|
<dt
|
|
|
|
@ -24,7 +24,7 @@
|
|
|
|
|
style="transform: rotate(270deg); position: relative; left: -4px; bottom: -2px"
|
|
|
|
|
@click="toPage('last')"
|
|
|
|
|
></dt>
|
|
|
|
|
<dd>{{ lasttext ? lasttext : '下一票' }}</dd>
|
|
|
|
|
<dd>{{ lasttext }}</dd>
|
|
|
|
|
</dl>
|
|
|
|
|
<dl v-if="code" @click="openPrint">
|
|
|
|
|
<dt class="iconfont icon-fujian-wenjian"></dt>
|
|
|
|
@ -106,12 +106,12 @@
|
|
|
|
|
// 下一票 文字替换
|
|
|
|
|
lasttext: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: null,
|
|
|
|
|
default: '下一票',
|
|
|
|
|
},
|
|
|
|
|
// 上一票 文字替换
|
|
|
|
|
nexttext: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: null,
|
|
|
|
|
default: '上一票',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
emits: ['copy'],
|
|
|
|
|