doctor-admin-components 1.0.13-beta.7 → 1.0.13-beta.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -7
- package/package.json +1 -1
- package/packages/index.js +7 -0
- package/packages/src/api/biz/bizContract.js +980 -1
- package/packages/src/api/biz/bizContractCompany.js +1 -1
- package/packages/src/api/biz/bizFileInfo.js +16 -0
- package/packages/src/api/biz/bizInvoice.js +1 -1
- package/packages/src/assets/images/click-show-table.png +0 -0
- package/packages/src/assets/images/more.png +0 -0
- package/packages/src/assets/images/pdf-new.png +0 -0
- package/packages/src/components/FileUpload/contract-drag-new.vue +99 -10
- package/packages/src/i18n/en/message.json +297 -0
- package/packages/src/i18n/index.js +38 -0
- package/packages/src/i18n/zh-CN/message.json +297 -0
- package/packages/src/index.js +6 -0
- package/packages/src/utils/index.js +35 -0
- package/packages/src/utils/request.js +120 -146
- package/packages/src/views/biz/bizFileInfo/PAYMENT_VOUCHER(/"payment_voucher/", /"/344/273/230/346/254/276/345/207/255/350/257/201.ini" +222 -0
- package/packages/src/views/biz/bizFileInfo/contract copy.vue +1711 -0
- package/packages/src/views/biz/bizFileInfo/contract.vue +1676 -998
- package/packages/src/views/biz/bizFileInfo/contractFile/BillOfLadingNoTab.vue +114 -0
- package/packages/src/views/biz/bizFileInfo/contractFile/ContentTitle.vue +102 -0
- package/packages/src/views/biz/bizFileInfo/contractFile/IMGPreviewCheckBox.vue +308 -0
- package/packages/src/views/biz/bizFileInfo/contractFile/Progress.vue +85 -0
- package/packages/src/views/biz/bizFileInfo/contractFile/ProgressDetail.vue +122 -0
- package/packages/src/views/biz/bizFileInfo/contractFile/SectionSlot.vue +83 -0
- package/packages/src/views/biz/bizFileInfo/contractFile/ShowAndHide.vue +178 -0
- package/packages/src/views/biz/bizFileInfo/fileShow copy.vue +321 -0
- package/packages/src/views/biz/bizFileInfo/fileShow.vue +131 -46
- package/packages/src/views/biz/bizFileInfo/fileShowClaim.vue +1 -1
- package/packages/src/views/biz/bizShipment/add.vue +126 -61
- package/packages/src/views/biz/contractTracing/addSubCompany.vue +106 -169
- package/packages/src/views/biz/contractTracing/billInfo.vue +150 -315
- package/packages/src/views/biz/contractTracing/companyBanks.vue +228 -0
- package/packages/src/views/biz/contractTracing/contractPdf.vue +5 -3
- package/packages/src/views/biz/contractTracing/contractSummary.vue +286 -629
- package/packages/src/views/biz/contractTracing/contractTracingDetail copy.vue +107 -0
- package/packages/src/views/biz/contractTracing/contractTracingDetail.vue +204 -7
- package/packages/src/views/biz/contractTracing/editBill.vue +219 -359
- package/packages/src/views/biz/contractTracing/purchaseInvoiceUpload.vue +153 -7
- package/packages/src/views/biz/contractTracing/shipmentPurchaseAmount.vue +8 -2
- package/packages/src/views/biz/contractTracing/subCompanyDialog.vue +203 -176
- package/packages/src/views/test.vue +3 -3
- package/packages/src/views/biz/contractTracing/association.vue +0 -189
- package/packages/src/views/biz/contractTracing/chargingDialog.vue +0 -84
- package/packages/src/views/biz/contractTracing/contract.vue +0 -1276
- package/packages/src/views/biz/contractTracing/disputeRecord.vue +0 -311
- package/packages/src/views/biz/contractTracing/edit.vue +0 -205
- package/packages/src/views/biz/contractTracing/sendDrafEmail.vue +0 -120
- package/packages/src/views/biz/contractTracing/shipment.vue +0 -601
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
* @Author: zhangpengwei 15038779532@163.com
|
|
3
|
-
* @Date: 2023-07-31 17:40:56
|
|
4
|
-
* @LastEditors: zhangpengwei 15038779532@163.com
|
|
5
|
-
* @LastEditTime: 2023-07-31 18:01:49
|
|
6
|
-
* @FilePath: /doctor-admin-components/packages/src/views/biz/contractTracing/chargingDialog.vue
|
|
7
|
-
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
8
|
-
-->
|
|
9
|
-
<template>
|
|
10
|
-
<div class="app-container">
|
|
11
|
-
<!-- 合同争议详情对话框 -->
|
|
12
|
-
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
|
|
13
|
-
<file-upload
|
|
14
|
-
v-model="form.deliveryReceiptFileList"
|
|
15
|
-
:fileType="[]"
|
|
16
|
-
></file-upload>
|
|
17
|
-
<div slot="footer" class="dialog-footer">
|
|
18
|
-
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
19
|
-
<el-button @click="cancel">取 消</el-button>
|
|
20
|
-
</div>
|
|
21
|
-
</el-dialog>
|
|
22
|
-
</div>
|
|
23
|
-
</template>
|
|
24
|
-
|
|
25
|
-
<script>
|
|
26
|
-
import { chargedShipment } from "../../../api/biz/bizShipment";
|
|
27
|
-
import FileUpload from "../../../components/FileUpload/uploadInvoice.vue";
|
|
28
|
-
|
|
29
|
-
export default {
|
|
30
|
-
name: "ChargingDialog",
|
|
31
|
-
components: { FileUpload },
|
|
32
|
-
data() {
|
|
33
|
-
return {
|
|
34
|
-
// 遮罩层
|
|
35
|
-
loading: true,
|
|
36
|
-
// 弹出层标题
|
|
37
|
-
title: "",
|
|
38
|
-
// 是否显示弹出层
|
|
39
|
-
open: false,
|
|
40
|
-
// 表单参数
|
|
41
|
-
form: {},
|
|
42
|
-
// 非单个禁用
|
|
43
|
-
single: true,
|
|
44
|
-
// 非多个禁用
|
|
45
|
-
multiple: true,
|
|
46
|
-
//
|
|
47
|
-
contract: null,
|
|
48
|
-
};
|
|
49
|
-
},
|
|
50
|
-
created() {},
|
|
51
|
-
mounted() {},
|
|
52
|
-
methods: {
|
|
53
|
-
/** 提交按钮 */
|
|
54
|
-
submitForm() {
|
|
55
|
-
chargedShipment(this.form).then((response) => {
|
|
56
|
-
this.$modal.msgSuccess("电放成功");
|
|
57
|
-
this.$emit("refresh");
|
|
58
|
-
this.open = false;
|
|
59
|
-
});
|
|
60
|
-
},
|
|
61
|
-
// 取消按钮
|
|
62
|
-
cancel() {
|
|
63
|
-
this.open = false;
|
|
64
|
-
this.reset();
|
|
65
|
-
},
|
|
66
|
-
// 表单重置
|
|
67
|
-
reset() {
|
|
68
|
-
this.form = {
|
|
69
|
-
shipmentId: null,
|
|
70
|
-
deliveryReceiptFileList: [],
|
|
71
|
-
};
|
|
72
|
-
this.resetForm("form");
|
|
73
|
-
},
|
|
74
|
-
/** 展示按钮操作 */
|
|
75
|
-
handleShow(shipmentId) {
|
|
76
|
-
this.reset();
|
|
77
|
-
this.form.shipmentId = shipmentId;
|
|
78
|
-
this.title = "请上传电放凭证确认卖家已电放";
|
|
79
|
-
this.open = true;
|
|
80
|
-
},
|
|
81
|
-
},
|
|
82
|
-
};
|
|
83
|
-
</script>
|
|
84
|
-
|