doctor-admin-components 1.0.13-beta.75 → 1.0.13-beta.77
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/package.json
CHANGED
|
@@ -1149,7 +1149,8 @@ export default {
|
|
|
1149
1149
|
async checkPreShipment() {
|
|
1150
1150
|
let res = await addContainerCheck({
|
|
1151
1151
|
'billOfLadingNo': this.form.billOfLadingNo,
|
|
1152
|
-
'bookingNo': this.form.bookingNo
|
|
1152
|
+
'bookingNo': this.form.bookingNo,
|
|
1153
|
+
'shipmentId': this.form.shipmentId
|
|
1153
1154
|
})
|
|
1154
1155
|
if (!res.data.checkShipmentTip) {
|
|
1155
1156
|
return true
|
|
@@ -110,6 +110,7 @@ export default {
|
|
|
110
110
|
if (this.form.copyFileTypeList.length == 0) {
|
|
111
111
|
return this.$modal.msgError('请选择您需要复制的数据或文件')
|
|
112
112
|
}
|
|
113
|
+
console.log('form', this.form)
|
|
113
114
|
// 获取详情数据
|
|
114
115
|
const loading = this.openLoading()
|
|
115
116
|
getBizShipment(this.form.citeShipmentId).then((res) => {
|
|
@@ -139,10 +140,10 @@ export default {
|
|
|
139
140
|
this.shipmentList = null
|
|
140
141
|
this.form = {
|
|
141
142
|
citeShipmentId: null,
|
|
142
|
-
copyFileTypeList:
|
|
143
|
+
copyFileTypeList: this.fileList.map((res) => res.key) // 可复用的文件
|
|
143
144
|
}
|
|
144
145
|
this.contractId = null
|
|
145
|
-
this.isSelectAll =
|
|
146
|
+
this.isSelectAll = true
|
|
146
147
|
this.blList = null
|
|
147
148
|
}
|
|
148
149
|
},
|