|
@@ -11,12 +11,8 @@
|
|
|
>
|
|
>
|
|
|
<template #bodyCell="{ record, column }">
|
|
<template #bodyCell="{ record, column }">
|
|
|
<template v-if="column.key === 'supportRfid'">
|
|
<template v-if="column.key === 'supportRfid'">
|
|
|
- <span v-if="record.supportRfid === true">
|
|
|
|
|
- 是
|
|
|
|
|
- </span>
|
|
|
|
|
- <span v-else>
|
|
|
|
|
- 否
|
|
|
|
|
- </span>
|
|
|
|
|
|
|
+ <span v-if="record.supportRfid === true"> 是 </span>
|
|
|
|
|
+ <span v-else> 否 </span>
|
|
|
</template>
|
|
</template>
|
|
|
<template v-if="column.key === 'operation'">
|
|
<template v-if="column.key === 'operation'">
|
|
|
<span>
|
|
<span>
|
|
@@ -146,6 +142,25 @@
|
|
|
</a-form-item>
|
|
</a-form-item>
|
|
|
</a-col>
|
|
</a-col>
|
|
|
</a-row>
|
|
</a-row>
|
|
|
|
|
+ <a-row :gutter="24">
|
|
|
|
|
+ <a-col :span="11">
|
|
|
|
|
+ <a-form-item
|
|
|
|
|
+ label="打印机分辨率"
|
|
|
|
|
+ :label-col="{ span: 8 }"
|
|
|
|
|
+ :wrapper-col="{ span: 16 }"
|
|
|
|
|
+ >
|
|
|
|
|
+ <a-select
|
|
|
|
|
+ v-model:value="printerState.printheads"
|
|
|
|
|
+ style="width: 220px"
|
|
|
|
|
+ >
|
|
|
|
|
+ <a-select-option :value="6">152.4</a-select-option>
|
|
|
|
|
+ <a-select-option :value="8">203.2</a-select-option>
|
|
|
|
|
+ <a-select-option :value="12">304.8</a-select-option>
|
|
|
|
|
+ <a-select-option :value="24">609.6</a-select-option>
|
|
|
|
|
+ </a-select>
|
|
|
|
|
+ </a-form-item>
|
|
|
|
|
+ </a-col>
|
|
|
|
|
+ </a-row>
|
|
|
</a-form>
|
|
</a-form>
|
|
|
</a-modal>
|
|
</a-modal>
|
|
|
</main>
|
|
</main>
|
|
@@ -179,7 +194,8 @@ const printerState = ref({
|
|
|
backLength: 0,
|
|
backLength: 0,
|
|
|
offsetHeight: 0,
|
|
offsetHeight: 0,
|
|
|
offsetWidth: 0,
|
|
offsetWidth: 0,
|
|
|
- darkness: 15,
|
|
|
|
|
|
|
+ darkness: 30,
|
|
|
|
|
+ printheads: 8,
|
|
|
});
|
|
});
|
|
|
const base = reactive({
|
|
const base = reactive({
|
|
|
clientId: '',
|
|
clientId: '',
|