doctor-admin-components 1.0.13-beta.8 → 1.0.13-pro.0
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/src/api/biz/bizContract.js +0 -1
- package/packages/src/api/biz/bizContractCompany.js +1 -1
- package/packages/src/utils/request.js +120 -146
- package/packages/src/views/biz/bizShipment/add.vue +101 -50
- 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/contractSummary.vue +11 -6
- package/packages/src/views/biz/contractTracing/editBill.vue +219 -359
- package/packages/src/views/biz/contractTracing/shipmentPurchaseAmount.vue +0 -8
- package/packages/src/views/biz/contractTracing/subCompanyDialog.vue +196 -176
- 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
|
-
|