doctor-admin-components 1.0.14-beta.1 → 1.0.14-beta.10
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 +6 -1
- package/package.json +1 -1
- package/packages/index.js +0 -1
- package/packages/src/api/biz/bizShipment.js +20 -0
- package/packages/src/utils/MycommonUtil.js +12 -0
- package/packages/src/views/biz/bizFileInfo/contract.vue +440 -331
- package/packages/src/views/biz/bizFileInfo/contractFile/BillOfLadingNoTab.vue +9 -7
- package/packages/src/views/biz/bizFileInfo/contractFile/IMGPreviewCheckBox.vue +22 -6
- package/packages/src/views/biz/bizFileInfo/contractFile/SectionSlot.vue +11 -3
- package/packages/src/views/biz/bizFileInfo/fileShow.vue +11 -3
- package/packages/src/views/biz/bizShipment/add.vue +58 -10
- package/packages/src/views/biz/contractTracing/contractPdf.vue +3 -1
- package/packages/src/views/biz/contractTracing/contractSummary.vue +7 -1
- package/packages/src/views/biz/contractTracing/contractTracingDetail.vue +3 -75
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @Author: zhangpengwei 15038779532@163.com
|
|
3
3
|
* @Date: 2023-07-24 15:11:26
|
|
4
4
|
* @LastEditors: zhangpengwei@1338418459736990.onaliyun.com zhangpengwei@1338418459736990.onaliyun.com
|
|
5
|
-
* @LastEditTime: 2024-
|
|
5
|
+
* @LastEditTime: 2024-07-29 18:10:31
|
|
6
6
|
* @FilePath: /doctor-admin-components/README.md
|
|
7
7
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE1
|
|
8
8
|
-->
|
|
@@ -83,3 +83,8 @@ VDistpicker
|
|
|
83
83
|
<VDistpicker :hideArea="true" @selected="onSelected" :province="placeholders.province" :city="placeholders.city"></VDistpicker>
|
|
84
84
|
|
|
85
85
|
```
|
|
86
|
+
|
|
87
|
+
https://npmmirror.com/package/doctor-admin-components/versions?
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
npm config set proxy http://127.0.0.1:7890
|
package/package.json
CHANGED
package/packages/index.js
CHANGED
|
@@ -136,3 +136,23 @@ export function haveVoidShipment(contractId) {
|
|
|
136
136
|
params: {}
|
|
137
137
|
})
|
|
138
138
|
}
|
|
139
|
+
|
|
140
|
+
// 保存草稿
|
|
141
|
+
export function saveDraft(data) {
|
|
142
|
+
return request({
|
|
143
|
+
url: '/biz/shipment/saveDraft',
|
|
144
|
+
method: 'post',
|
|
145
|
+
data
|
|
146
|
+
})
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// 保存草稿
|
|
150
|
+
export function getDraft(contractId) {
|
|
151
|
+
return request({
|
|
152
|
+
url: '/biz/shipment/getDraft',
|
|
153
|
+
method: 'get',
|
|
154
|
+
params: {
|
|
155
|
+
contractId
|
|
156
|
+
}
|
|
157
|
+
})
|
|
158
|
+
}
|