|
@@ -0,0 +1,511 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="main-contain">
|
|
3
|
+ <div class="position">
|
|
4
|
+ <bread-crumb :crumbs="crumbs"></bread-crumb>
|
|
5
|
+ <el-row style="float: right">
|
|
6
|
+ <el-col :span="24">
|
|
7
|
+ <el-button
|
|
8
|
+ size="small"
|
|
9
|
+ icon="el-icon-printer"
|
|
10
|
+ type="primary"
|
|
11
|
+ @click="printAction"
|
|
12
|
+ >打印</el-button
|
|
13
|
+ >
|
|
14
|
+ </el-col>
|
|
15
|
+ </el-row>
|
|
16
|
+ </div>
|
|
17
|
+ <div class="app-container" style="background-color: white">
|
|
18
|
+ <div id="print_content">
|
|
19
|
+ <div class="print_main_content">
|
|
20
|
+ <div class="order_title_panl">
|
|
21
|
+ <div style="font-size: 22px; font-weight: bold">{{ orgName }}</div>
|
|
22
|
+ <span style="font-weight: 500; font-size: 18px">采购退货单</span>
|
|
23
|
+ </div>
|
|
24
|
+ <div style="display: flex; justify-content: space-between">
|
|
25
|
+ <div style="text-align: left; margin-bottom: 1px; font-size: 18px">
|
|
26
|
+ 供应商:
|
|
27
|
+ {{ getSupplyName(supplier_id) }}
|
|
28
|
+ </div>
|
|
29
|
+ <div style="margin-bottom: 1px; font-size: 18px">
|
|
30
|
+ 单据日期:
|
|
31
|
+ 单据日期:{{ getTimes(document_date) }}
|
|
32
|
+ </div>
|
|
33
|
+ <div style="margin-bottom: 1px; font-size: 18px">
|
|
34
|
+ 单据编号:
|
|
35
|
+ {{ number }}
|
|
36
|
+ </div>
|
|
37
|
+ <div style="margin-bottom: 1px; font-size: 18px">币别:RMB</div>
|
|
38
|
+ </div>
|
|
39
|
+
|
|
40
|
+ <div class="table_panel">
|
|
41
|
+ <table class="table">
|
|
42
|
+ <thead>
|
|
43
|
+ <tr>
|
|
44
|
+ <td style="line-height: 18px" width="80">序号</td>
|
|
45
|
+ <td style="line-height: 18px" width="80">商品</td>
|
|
46
|
+ <td style="line-height: 18px" width="80">单位</td>
|
|
47
|
+ <td style="line-height: 18px" width="80">数量</td>
|
|
48
|
+ <td style="line-height: 18px" width="80">采购单价</td>
|
|
49
|
+ <td style="line-height: 18px" width="80">折扣率</td>
|
|
50
|
+ <td style="line-height: 18px" width="80">折扣额</td>
|
|
51
|
+ <td style="line-height: 18px" width="60">采购金额</td>
|
|
52
|
+
|
|
53
|
+ </tr>
|
|
54
|
+ </thead>
|
|
55
|
+ <tbody>
|
|
56
|
+ <tr v-for="(item, index) in tableList" :key="index">
|
|
57
|
+ <td style="line-height: 18px">
|
|
58
|
+ <span>{{ index + 1 }}</span>
|
|
59
|
+ </td>
|
|
60
|
+ <td style="line-height: 18px">
|
|
61
|
+ <span>{{ item.name }}</span>
|
|
62
|
+ </td>
|
|
63
|
+ <td style="line-height: 18px">
|
|
64
|
+ <span>{{ item.supply_unit }}</span>
|
|
65
|
+ </td>
|
|
66
|
+ <td style="line-height: 18px">
|
|
67
|
+ <span>{{ item.supply_count }}</span>
|
|
68
|
+ </td>
|
|
69
|
+ <td style="line-height: 18px">
|
|
70
|
+ <span>{{ item.price }}</span>
|
|
71
|
+ </td>
|
|
72
|
+ <td style="line-height: 18px">
|
|
73
|
+ <span v-if="item.deposit_rate >0">{{item.deposit_rate}}</span>
|
|
74
|
+ </td>
|
|
75
|
+ <td style="line-height: 18px">
|
|
76
|
+ <span v-if="(item.supply_count * item.price *item.deposit_rate/100) >0">{{(item.supply_count * item.price *item.deposit_rate/100).toFixed(2)}}</span>
|
|
77
|
+ </td>
|
|
78
|
+ <td style="line-height: 18px">
|
|
79
|
+ <span v-if="discount_amount > 0">{{ discount_amount }}</span>
|
|
80
|
+ </td>
|
|
81
|
+
|
|
82
|
+ </tr>
|
|
83
|
+ <tr>
|
|
84
|
+ <td colspan="3" style="line-height: 18px">合计</td>
|
|
85
|
+ <td colspan="1" style="line-height: 18px">{{getAllCount()}}</td>
|
|
86
|
+ <td colspan="5" style="line-height: 18px"></td>
|
|
87
|
+ </tr>
|
|
88
|
+ <tr>
|
|
89
|
+ <td colspan="9" style="line-height: 18px">合计 金额大写 {{getAllPrice()}}</td>
|
|
90
|
+ </tr>
|
|
91
|
+ </tbody>
|
|
92
|
+ </table>
|
|
93
|
+ </div>
|
|
94
|
+ <div
|
|
95
|
+ style="
|
|
96
|
+ width: 100%;
|
|
97
|
+ display: flex;
|
|
98
|
+ flex: 1;
|
|
99
|
+ justify-content: flex-start;
|
|
100
|
+ flex-wrap: wrap;
|
|
101
|
+ "
|
|
102
|
+ >
|
|
103
|
+ <div
|
|
104
|
+ style="
|
|
105
|
+ width: 25%;
|
|
106
|
+ text-align: left;
|
|
107
|
+ margin-bottom: 1px;
|
|
108
|
+ font-size: 18px;
|
|
109
|
+ "
|
|
110
|
+ >
|
|
111
|
+ 供应商: {{ getSupplyName(supplier_id) }}
|
|
112
|
+ </div>
|
|
113
|
+ <div
|
|
114
|
+ style="
|
|
115
|
+ width: 25%;
|
|
116
|
+ text-align: left;
|
|
117
|
+ margin-bottom: 1px;
|
|
118
|
+ font-size: 18px;
|
|
119
|
+ "
|
|
120
|
+ >
|
|
121
|
+ 优惠金额:<span v-if="discount_amount>0">{{discount_amount}}</span>
|
|
122
|
+ </div>
|
|
123
|
+ <div
|
|
124
|
+ style="
|
|
125
|
+ width: 25%;
|
|
126
|
+ text-align: left;
|
|
127
|
+ margin-bottom: 1px;
|
|
128
|
+ font-size: 18px;
|
|
129
|
+ "
|
|
130
|
+ >
|
|
131
|
+ 本次退款:<span v-if="payment>0" >{{payment}}</span>
|
|
132
|
+ </div>
|
|
133
|
+ <div
|
|
134
|
+ style="
|
|
135
|
+ width: 25%;
|
|
136
|
+ text-align: left;
|
|
137
|
+ margin-bottom: 1px;
|
|
138
|
+ font-size: 18px;
|
|
139
|
+ "
|
|
140
|
+ >
|
|
141
|
+ 本次欠款:<span v-if="arrearage >0">{{arrearage}}</span>
|
|
142
|
+ </div>
|
|
143
|
+ <div
|
|
144
|
+ style="
|
|
145
|
+ width: 100%;
|
|
146
|
+ text-align: left;
|
|
147
|
+ margin-bottom: 1px;
|
|
148
|
+ font-size: 18px;
|
|
149
|
+ "
|
|
150
|
+ >
|
|
151
|
+ 备注:{{return_remark}}
|
|
152
|
+ </div>
|
|
153
|
+ <div
|
|
154
|
+ style="
|
|
155
|
+ width: 25%;
|
|
156
|
+ text-align: left;
|
|
157
|
+ margin-bottom: 1px;
|
|
158
|
+ font-size: 18px;
|
|
159
|
+ "
|
|
160
|
+ >
|
|
161
|
+ 制单人:{{getXuserName(creater)}}
|
|
162
|
+ </div>
|
|
163
|
+ <div
|
|
164
|
+ style="
|
|
165
|
+ width: 25%;
|
|
166
|
+ text-align: left;
|
|
167
|
+ margin-bottom: 1px;
|
|
168
|
+ font-size: 18px;
|
|
169
|
+ "
|
|
170
|
+ >
|
|
171
|
+ 收货人签字:
|
|
172
|
+ </div>
|
|
173
|
+ <div
|
|
174
|
+ style="
|
|
175
|
+ width: 25%;
|
|
176
|
+ text-align: left;
|
|
177
|
+ margin-bottom: 1px;
|
|
178
|
+ font-size: 18px;
|
|
179
|
+ "
|
|
180
|
+ >
|
|
181
|
+ 供应商签字:
|
|
182
|
+ </div>
|
|
183
|
+ </div>
|
|
184
|
+
|
|
185
|
+ </div>
|
|
186
|
+ </div>
|
|
187
|
+ </div>
|
|
188
|
+ </div>
|
|
189
|
+</template>
|
|
190
|
+
|
|
191
|
+<script>
|
|
192
|
+import BreadCrumb from "@/xt_pages/components/bread-crumb";
|
|
193
|
+
|
|
194
|
+import { fetchAllAdminUsers } from "@/api/doctor";
|
|
195
|
+import { getGoodReturnDetail } from "@/api/supply";
|
|
196
|
+import print from "print-js";
|
|
197
|
+import { getLodop } from "@/assets/LodopFuncs";
|
|
198
|
+const moment = require("moment");
|
|
199
|
+import { uParseTime } from "@/utils/tools";
|
|
200
|
+export default {
|
|
201
|
+ components: {
|
|
202
|
+ BreadCrumb,
|
|
203
|
+ },
|
|
204
|
+ data() {
|
|
205
|
+ return {
|
|
206
|
+ size: "medium ",
|
|
207
|
+ crumbs: [
|
|
208
|
+ { path: false, name: "库存管理" },
|
|
209
|
+ { path: false, name: "耗材管理" },
|
|
210
|
+ { path: false, name: "入库单打印" },
|
|
211
|
+ ],
|
|
212
|
+ isEdit: 0,
|
|
213
|
+ checked: false,
|
|
214
|
+ signAndWeighBoxPatients: "sign-and-weigh-box-patients",
|
|
215
|
+ time_now: moment(new Date()).add("year", 0).format("YYYY-MM-DD"),
|
|
216
|
+ orgName: "",
|
|
217
|
+ orgId: "",
|
|
218
|
+ adminUserOptions: [],
|
|
219
|
+ tableList: [],
|
|
220
|
+ number: "",
|
|
221
|
+ id: "",
|
|
222
|
+ supplier_id: "",
|
|
223
|
+ rate_of_concession: "",
|
|
224
|
+ discount_amount: "",
|
|
225
|
+ supplyList: [],
|
|
226
|
+ document_date: "",
|
|
227
|
+ warehouse_out_id:"",
|
|
228
|
+ return_remark: "",
|
|
229
|
+ warehousing_id: 0,
|
|
230
|
+ number: "",
|
|
231
|
+ drugList: [],
|
|
232
|
+ goodList: [],
|
|
233
|
+ arrearage:"",
|
|
234
|
+ payment:"",
|
|
235
|
+ creater:"",
|
|
236
|
+ };
|
|
237
|
+ },
|
|
238
|
+ methods: {
|
|
239
|
+ printAction: function () {
|
|
240
|
+ const style =
|
|
241
|
+ "@media print { .print_main_content { background-color: white; width:960px; margin:0 auto; padding: 0 0 20px 0; } .order_title_panl { text-align: center; } .main_title { font-size: 18px; line-height: 40px; font-weight: 500; } .table_panel { } .table { width: 100%; border: 1px solid; border-collapse: collapse; padding: 2px; } thead tr td { border: 1px solid; text-align: center; font-size: 14px; padding: 1px 5px; } tbody tr td { border: 1px solid; text-align: center; font-size: 12px; padding: 10px 5px; white-space: pre-line;} .proj { padding: 5px 0; text-align: left; } .proj_title { font-size: 16px; font-weight: 500; line-height: 25px; } .proj_item { font-size: 15px; line-height: 20px; } .zone_name { font-weight: 500; } }";
|
|
242
|
+ printJS({
|
|
243
|
+ printable: "print_content",
|
|
244
|
+ type: "html",
|
|
245
|
+ documentTitle: " ",
|
|
246
|
+ style: style,
|
|
247
|
+ scanStyles: false,
|
|
248
|
+ });
|
|
249
|
+ },
|
|
250
|
+ // 打印功能
|
|
251
|
+ btnClickPrint: function () {
|
|
252
|
+ let LODOP = getLodop(); //调用getLodop获取LODOP对象
|
|
253
|
+ LODOP.PRINT_INIT("打印控件功能演示_Lodop功能_整页缩放打印输出");
|
|
254
|
+
|
|
255
|
+ LODOP.ADD_PRINT_BARCODE(15, 15, 300, 300, "QRCode", "xxxxxxxxxxxxx");
|
|
256
|
+ LODOP.SET_PRINT_STYLEA(0, "Stretch", 1); //(可变形)扩展缩放模式
|
|
257
|
+ LODOP.PREVIEW(); //预览(预览打印无脚标)
|
|
258
|
+ // LODOP.PRINT(); //打印
|
|
259
|
+ LODOP.RINT_DESIGN();
|
|
260
|
+ },
|
|
261
|
+
|
|
262
|
+ getTime(val) {
|
|
263
|
+ if (val < 0) {
|
|
264
|
+ return "";
|
|
265
|
+ }
|
|
266
|
+ if (val == "") {
|
|
267
|
+ return "";
|
|
268
|
+ } else {
|
|
269
|
+ return uParseTime(val, "{y}-{m}-{d}");
|
|
270
|
+ }
|
|
271
|
+ },
|
|
272
|
+ fetchAllAdminUsers() {
|
|
273
|
+ fetchAllAdminUsers().then((response) => {
|
|
274
|
+ if (response.data.state == 1) {
|
|
275
|
+ this.adminUserOptions = response.data.data.users;
|
|
276
|
+ }
|
|
277
|
+ });
|
|
278
|
+ },
|
|
279
|
+ getXuserName(id) {
|
|
280
|
+ if (id <= 0) {
|
|
281
|
+ return "";
|
|
282
|
+ }
|
|
283
|
+ var name = "";
|
|
284
|
+ if (
|
|
285
|
+ this.adminUserOptions == null ||
|
|
286
|
+ typeof this.adminUserOptions.length === "undefined"
|
|
287
|
+ ) {
|
|
288
|
+ return name;
|
|
289
|
+ }
|
|
290
|
+ var leng = this.adminUserOptions.length;
|
|
291
|
+ if (leng == 0) {
|
|
292
|
+ return name;
|
|
293
|
+ }
|
|
294
|
+ for (let index = 0; index < leng; index++) {
|
|
295
|
+ if (this.adminUserOptions[index].id == id) {
|
|
296
|
+ name = this.adminUserOptions[index].name;
|
|
297
|
+ break;
|
|
298
|
+ }
|
|
299
|
+ }
|
|
300
|
+ return name;
|
|
301
|
+ },
|
|
302
|
+
|
|
303
|
+ getSupplyName(id) {
|
|
304
|
+ var name = "";
|
|
305
|
+ for (let i = 0; i < this.supplyList.length; i++) {
|
|
306
|
+ if (id == this.supplyList[i].id) {
|
|
307
|
+ name = this.supplyList[i].supplier_name;
|
|
308
|
+ }
|
|
309
|
+ }
|
|
310
|
+ return name;
|
|
311
|
+ },
|
|
312
|
+ getGoodReturnDetail() {
|
|
313
|
+ var id = this.$route.query.id;
|
|
314
|
+ getGoodReturnDetail(id).then((response) => {
|
|
315
|
+ if (response.data.state == 1) {
|
|
316
|
+ var out = response.data.data.cancelDetail;
|
|
317
|
+ this.supplyList = response.data.data.supplyList
|
|
318
|
+ this.warehouse_out_id = out.warehouse_out_id;
|
|
319
|
+ this.number = out.number;
|
|
320
|
+ this.is_check = out.is_check;
|
|
321
|
+ this.id = out.id;
|
|
322
|
+ this.supplier_id = out.supplier_id;
|
|
323
|
+ this.rate_of_concession = out.rate_of_concession;
|
|
324
|
+ this.discount_amount = out.discount_amount;
|
|
325
|
+ this.payment = out.payment;
|
|
326
|
+ this.arrearage = out.arrearage;
|
|
327
|
+ this.creater= out.creater,
|
|
328
|
+ this.return_remark = out.return_remark
|
|
329
|
+ this.document_date = out.document_date;
|
|
330
|
+ var orderInfo = response.data.data.orderCancelDetail;
|
|
331
|
+ for (let i = 0; i < orderInfo.length; i++) {
|
|
332
|
+ orderInfo[i].id = orderInfo[i].id;
|
|
333
|
+ orderInfo[i].supply_count = orderInfo[i].supply_count;
|
|
334
|
+ orderInfo[i].supply_price = orderInfo[i].price;
|
|
335
|
+ orderInfo[i].supply_remake = orderInfo[i].remark;
|
|
336
|
+ orderInfo[i].type = orderInfo[i].is_source;
|
|
337
|
+ orderInfo[i].project_id = orderInfo[i].project_id;
|
|
338
|
+ orderInfo[i].supply_unit = orderInfo[i].supply_unit;
|
|
339
|
+ orderInfo[i].order_number = orderInfo[i].order_number;
|
|
340
|
+ orderInfo[i].good_number = orderInfo[i].good_number;
|
|
341
|
+ orderInfo[i].supply_total_price = (orderInfo[i].count * orderInfo[i].price).toFixed(2);
|
|
342
|
+ orderInfo[i].supply_expiry_date = orderInfo[i].supply_expiry_date;
|
|
343
|
+ orderInfo[i].supply_product_date = orderInfo[i].supply_product_date;
|
|
344
|
+ }
|
|
345
|
+
|
|
346
|
+ this.tableList = [];
|
|
347
|
+ this.tableList = orderInfo;
|
|
348
|
+ }
|
|
349
|
+ });
|
|
350
|
+ },
|
|
351
|
+ getTimes(time) {
|
|
352
|
+ if (time === "") {
|
|
353
|
+ return "";
|
|
354
|
+ }
|
|
355
|
+ return uParseTime(time, "{y}-{m}-{d}");
|
|
356
|
+ },
|
|
357
|
+ getAllCount(){
|
|
358
|
+ var total = 0
|
|
359
|
+ for(let i=0;i<this.tableList.length;i++){
|
|
360
|
+ total +=this.tableList[i].supply_count
|
|
361
|
+ }
|
|
362
|
+ if(total > 0){
|
|
363
|
+ return total
|
|
364
|
+ }else{
|
|
365
|
+ return ""
|
|
366
|
+ }
|
|
367
|
+ },
|
|
368
|
+ getAllPrice() {
|
|
369
|
+ var total_price = 0;
|
|
370
|
+ for (let i = 0; i < this.tableList.length; i++) {
|
|
371
|
+ total_price +=(this.tableList[i].supply_price *this.tableList[i].supply_count - (this.tableList[i].supply_price * this.tableList[i].supply_count*this.tableList[i].deposit_rate/100))
|
|
372
|
+ }
|
|
373
|
+ this.total_price = total_price;
|
|
374
|
+ if(total_price > 0){
|
|
375
|
+ return this.smallToBIG(total_price.toFixed(2));
|
|
376
|
+ }else{
|
|
377
|
+ return ""
|
|
378
|
+ }
|
|
379
|
+
|
|
380
|
+ },
|
|
381
|
+ smallToBIG(price) {
|
|
382
|
+ let fraction = ['角', '分'];
|
|
383
|
+ let digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖'];
|
|
384
|
+ let unit = [['元.', '万,', '亿,'], ['', '拾', '佰', '仟']];
|
|
385
|
+ let head = price < 0 ? '欠' : '';
|
|
386
|
+ price = Math.abs(price);
|
|
387
|
+ console.log("price",price)
|
|
388
|
+ let upper = '';
|
|
389
|
+ for (let i = 0; i < fraction.length; i++) {
|
|
390
|
+ upper += (digit[Math.floor(price * 10 * Math.pow(10, i)) % 10] + fraction[i]).replace(/零./, '');
|
|
391
|
+ }
|
|
392
|
+ upper = upper || '整';
|
|
393
|
+ console.log("price",upper)
|
|
394
|
+ price = Math.floor(price);
|
|
395
|
+ for (let i = 0; i < unit[0].length && price > 0; i++) {
|
|
396
|
+ let p = '';
|
|
397
|
+ for (let j = 0; j < unit[1].length && price > 0; j++) {
|
|
398
|
+ p = digit[price % 10] + unit[1][j] + p;
|
|
399
|
+ price = Math.floor(price / 10);
|
|
400
|
+ }
|
|
401
|
+ upper = p.replace(/(零.)*零$/, '').replace(/^$/, '零') + unit[0][i] + upper;
|
|
402
|
+ }
|
|
403
|
+ console.log("head",head)
|
|
404
|
+ var zhongwen = head + upper.replace(/(零.)*零元/, '元').replace(/(零.)+/g, '零').replace(/^整$/, '零元整')
|
|
405
|
+ console.log("23322323",zhongwen)
|
|
406
|
+ var ztr = zhongwen.replaceAll(".","");
|
|
407
|
+ console.log("ztr",ztr)
|
|
408
|
+ return ztr
|
|
409
|
+ },
|
|
410
|
+ },
|
|
411
|
+ created() {
|
|
412
|
+ this.orgName = this.$store.getters.xt_user.org.org_name;
|
|
413
|
+ this.orgId = this.$store.getters.xt_user.org.id;
|
|
414
|
+ this.fetchAllAdminUsers();
|
|
415
|
+ //获取购货单列表
|
|
416
|
+ this.getGoodReturnDetail();
|
|
417
|
+ },
|
|
418
|
+};
|
|
419
|
+</script>
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+<style rel="stylesheet/scss" lang="scss" scoped>
|
|
423
|
+.print_main_content {
|
|
424
|
+ background-color: white;
|
|
425
|
+ max-width: 1500px;
|
|
426
|
+ margin: 0 auto;
|
|
427
|
+ padding: 0 0 20px 0;
|
|
428
|
+
|
|
429
|
+ .order_title_panl {
|
|
430
|
+ text-align: center;
|
|
431
|
+
|
|
432
|
+ .main_title {
|
|
433
|
+ font-size: 18px;
|
|
434
|
+ line-height: 40px;
|
|
435
|
+ font-weight: 500;
|
|
436
|
+ }
|
|
437
|
+ }
|
|
438
|
+ .table_panel {
|
|
439
|
+ .table {
|
|
440
|
+ width: 100%;
|
|
441
|
+ border: 1px solid;
|
|
442
|
+ border-collapse: collapse;
|
|
443
|
+ padding: 2px;
|
|
444
|
+
|
|
445
|
+ thead {
|
|
446
|
+ tr {
|
|
447
|
+ td {
|
|
448
|
+ border: 1px solid;
|
|
449
|
+ text-align: center;
|
|
450
|
+ font-size: 18px;
|
|
451
|
+ padding: 1px 5px;
|
|
452
|
+ }
|
|
453
|
+ }
|
|
454
|
+ }
|
|
455
|
+ tbody {
|
|
456
|
+ tr {
|
|
457
|
+ td {
|
|
458
|
+ border: 1px solid;
|
|
459
|
+ text-align: center;
|
|
460
|
+ font-size: 18px;
|
|
461
|
+ padding: 10px 5px;
|
|
462
|
+ white-space: pre-line;
|
|
463
|
+ .proj {
|
|
464
|
+ padding: 5px 0;
|
|
465
|
+ text-align: left;
|
|
466
|
+
|
|
467
|
+ .proj_title {
|
|
468
|
+ font-size: 16px;
|
|
469
|
+ font-weight: 500;
|
|
470
|
+ line-height: 25px;
|
|
471
|
+ }
|
|
472
|
+
|
|
473
|
+ .proj_item {
|
|
474
|
+ font-size: 15px;
|
|
475
|
+ line-height: 20px;
|
|
476
|
+
|
|
477
|
+ .zone_name {
|
|
478
|
+ font-weight: 500;
|
|
479
|
+ }
|
|
480
|
+ }
|
|
481
|
+ }
|
|
482
|
+ }
|
|
483
|
+ }
|
|
484
|
+ }
|
|
485
|
+ }
|
|
486
|
+ }
|
|
487
|
+}
|
|
488
|
+
|
|
489
|
+.description {
|
|
490
|
+ width: 100%;
|
|
491
|
+ display: flex;
|
|
492
|
+ flex: 1;
|
|
493
|
+ justify-content: flex-start;
|
|
494
|
+ flex-wrap: wrap;
|
|
495
|
+ .content {
|
|
496
|
+ width: 25%;
|
|
497
|
+ text-align: left;
|
|
498
|
+ margin-bottom: 1px;
|
|
499
|
+ font-size: 18px;
|
|
500
|
+ }
|
|
501
|
+ .content_1 {
|
|
502
|
+ width: 100%;
|
|
503
|
+ text-align: left;
|
|
504
|
+ margin-bottom: 1px;
|
|
505
|
+ font-size: 18px;
|
|
506
|
+ }
|
|
507
|
+ // .content_2{
|
|
508
|
+ // width: 33%;
|
|
509
|
+ // }
|
|
510
|
+}
|
|
511
|
+</style>
|