ny
22 小时以前 282fbc6488f4e8ceb5fda759f963ee88fbf7b999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<script lang="ts" setup>
import { reactive, ref, toRefs, unref } from 'vue';
 
import { useMessage } from '@jnpf/hooks';
import { ESign } from '@jnpf/ui';
 
import printStyle from '../signet/printStyle';
 
defineOptions({ name: 'ExtendSignature' });
 
const state = reactive({
  lineWidth: 6,
  lineColor: '#000000',
  bgColor: '',
  resultImg: '',
  isCrop: false,
  showSig: true,
  tableData: [
    {
      order: '1',
      name: '服务器硬件',
      standards: '联想',
      num: '5',
      unit: '台',
      unitprice: '20000.00',
      total: '100000.00',
      remarks: '',
    },
    {
      order: '2',
      name: '数据库正版',
      standards: 'SQLServer',
      num: '5',
      unit: '套',
      unitprice: '9998.00',
      total: '49990.00',
      remarks: '',
    },
    {
      order: '3',
      name: 'OA内部管理系统',
      standards: '定制',
      num: '5',
      unit: '套',
      unitprice: '    390000.00',
      total: '    390000.00',
      remarks: '',
    },
    {
      order: '4',
      name: '进销存管理系统',
      standards: '定制',
      num: '5',
      unit: '套',
      unitprice: '260000.00',
      total: '260000.00',
      remarks: '',
    },
    {
      order: '5',
      name: '    服务费',
      standards: '',
      num: '5',
      unit: '年',
      unitprice: '80000.00',
      total: '80000.00',
      remarks: '',
    },
    {
      order: '6',
      name: '差旅费用',
      standards: '',
      num: '5',
      unit: '年',
      unitprice: '60000.00',
      total: '80000.00',
      remarks: '',
    },
  ],
});
const printRef = ref();
const esignRef = ref();
const { createMessage } = useMessage();
const { tableData, isCrop, lineWidth, lineColor, bgColor, showSig, resultImg } = toRefs(state);
const columns = [
  { title: '序号', align: 'center', customRender: ({ index }) => index + 1, width: 50 },
  { title: '品名', dataIndex: 'name', key: 'name', width: 150 },
  { title: '规格', dataIndex: 'standards', key: 'standards', width: 100 },
  { title: '数量', dataIndex: 'num', key: 'num', width: 60 },
  { title: '单位', dataIndex: 'unit', key: 'unit', width: 60 },
  { title: '单价', dataIndex: 'unitprice', key: 'unitprice', width: 60 },
  { title: '金额', dataIndex: 'total', key: 'total', width: 60 },
  { title: '备注', dataIndex: 'remarks', key: 'remarks', width: 100 },
];
 
function handlePrint() {
  const print = printRef.value.innerHTML + printStyle;
  const iframe: any = document.createElement('IFRAME');
  iframe.setAttribute('style', 'position:absolute;width:0px;height:0px;left:-500px;top:-500px;');
  document.body.append(iframe);
  const doc = iframe.contentWindow.document;
  iframe.addEventListener('load', () => {
    iframe.contentWindow.print();
    iframe.remove();
  });
  doc.write(print);
  doc.close();
}
function getESign() {
  const esign = unref(esignRef);
  if (!esign) return null;
  return esign;
}
function handleReset() {
  state.resultImg = '';
  state.showSig = true;
  (getESign() as unknown as Recordable)?.reset();
}
function handleSubmit() {
  (getESign() as unknown as Recordable)
    .generate()
    .then((res) => {
      state.showSig = false;
      state.resultImg = res;
    })
    .catch(() => {
      createMessage.warning('请签名');
    });
}
</script>
<template>
  <div class="tem-container h-full">
    <a-button @click="handlePrint" class="signs print">打印</a-button>
    <div ref="printRef" class="tem_list">
      <h1>引迈信息技术有限公司</h1>
      <h2>报 价 单</h2>
      <h4>TO:</h4>
      <p class="title">感谢惠顾,现将贵公司所需配件报价如下:</p>
      <p class="lip">一、产品价格</p>
      <div class="table-box">
        <a-table :data-source="tableData" :columns="columns" size="small" :pagination="false" bordered />
      </div>
      <div class="sigbut">
        <div class="tip">请在这里输入你的签名</div>
        <div class="left-bu">
          <a-button class="clear-bu" @click="handleReset">清空</a-button>
          <a-button class="sure" @click="handleSubmit" :disabled="!showSig">确定签名 </a-button>
        </div>
      </div>
      <div class="online-sig">
        <ESign
          ref="esignRef"
          :height="150"
          :width="800"
          :line-width="lineWidth"
          :is-crop="isCrop"
          :line-color="lineColor"
          v-model:bg-color="bgColor"
          v-if="showSig" />
        <img :src="resultImg" alt="" v-if="!showSig" class="sig-img" />
      </div>
    </div>
  </div>
</template>
<style lang="scss" scoped>
.tem-container {
  position: relative;
  padding: 0;
  overflow: auto;
 
  .signs {
    position: absolute;
    top: 70px;
    right: 10px;
 
    &.print {
      top: 20px;
    }
  }
 
  .tem_list {
    position: relative;
    width: 800px;
    padding: 0 40px 15px;
    margin: 0 auto;
    font-size: 12px;
    color: var(--text-color-label);
    background: var(--component-background);
    border-radius: 8px;
  }
 
  h1 {
    padding-top: 36px;
    font-size: 24px;
  }
 
  h2 {
    font-size: 18px;
  }
 
  h1,
  h2 {
    font-weight: 700;
    color: var(--text-color-label);
    text-align: center;
  }
 
  .title {
    padding-left: 30px;
    font-size: 12px;
    line-height: 30px;
    border-bottom: 2px dashed #000;
  }
 
  .lip {
    padding: 20px 0;
  }
 
  .table-box {
    padding: 0 1px 0 0;
  }
 
  .demo-form-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
 
  .temdate {
    margin: 20px 60px;
    text-align: right;
  }
 
  .seal {
    padding-bottom: 40px;
    margin: 10px 120px;
    text-align: right;
  }
 
  .sigbut {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    color: var(--text-color-label);
    border: 1px solid var(--border-color-base1);
    border-top: 0;
 
    .left-bu {
      display: flex;
      align-items: center;
 
      .clear-bu,
      .sure {
        margin-left: 5px;
      }
    }
  }
 
  .online-sig {
    height: 150px;
    padding-top: 10px;
    border: 1px solid var(--border-color-base1);
    border-top: 0;
  }
}
</style>