diff --git a/src/api/modular/system/appManage.js b/src/api/modular/system/appManage.js
index ab2e76d..c0ca52a 100644
--- a/src/api/modular/system/appManage.js
+++ b/src/api/modular/system/appManage.js
@@ -274,3 +274,19 @@ export function SaveWFActivities (parameter) {
data: parameter
})
}
+
+export function workFlowSave (parameter) {
+ return axios({
+ url: '/ServiceWorkFlowBase/Save',
+ method: 'post',
+ data: parameter
+ })
+}
+
+export function workFlowGetInfo (parameter) {
+ return axios({
+ url: '/ServiceWorkFlowBase/GetInfo',
+ method: 'get',
+ params: parameter
+ })
+}
diff --git a/src/components/MultiTab/MultiTab.vue b/src/components/MultiTab/MultiTab.vue
index a6b4842..e608b16 100644
--- a/src/components/MultiTab/MultiTab.vue
+++ b/src/components/MultiTab/MultiTab.vue
@@ -48,7 +48,6 @@ export default {
onEdit(targetKey, action) {
const _that = this
if (targetKey.includes('BookingDetail')) {
- console.log(Object.keys(this.needSavePages).includes(targetKey), this.needSavePages[targetKey].details, this.needSavePages[targetKey].hbList)
if (
Object.keys(this.needSavePages).includes(targetKey) &&
(this.needSavePages[targetKey].details || this.needSavePages[targetKey].hbList)
diff --git a/src/views/main/BookingLedger/detail/index.vue b/src/views/main/BookingLedger/detail/index.vue
index f973b75..90e8012 100644
--- a/src/views/main/BookingLedger/detail/index.vue
+++ b/src/views/main/BookingLedger/detail/index.vue
@@ -258,7 +258,7 @@ const initDetail = {
payableatid: '',
blfrt: '',
thirdpayaddr: '',
- service: '',
+ service: 'CY-CY',
reeferf: '',
tempset: '',
tempid: '',
@@ -1748,7 +1748,7 @@ export default {
}
},
removeOrderFun() {
- DeleteLetterYard(this.bookingDetails.id)
+ DeleteBookingOrder(this.bookingDetails.id)
.then(res => {
if (res.success) {
this.$message.success('删除成功')
diff --git a/src/views/main/BookingLedger/list/index.vue b/src/views/main/BookingLedger/list/index.vue
index 4152dc5..68778b6 100644
--- a/src/views/main/BookingLedger/list/index.vue
+++ b/src/views/main/BookingLedger/list/index.vue
@@ -159,11 +159,6 @@
-
-
- {{ row.pono }}
-
-
@@ -210,12 +205,10 @@
{{ row.ygtETD.substring(0, 10) }}
-
-
-
- {{ row.atd.substring(0, 10) }}
-
-
+
+
+ {{ row.atd.substring(0, 10) }}
+
{{ row.issuedate.substring(0, 10) }}
@@ -355,7 +348,7 @@
{{ row.dzRemark }}
@@ -371,7 +364,7 @@
{{ row.czRemark }}
@@ -380,6 +373,40 @@
+
+
+
+
+
+ {{ row.shenQingXiangShi }}
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ row.pono }}
+
+
+
+
+
+
+
@@ -387,7 +414,7 @@
{{ row.custno }}
@@ -1051,7 +1078,11 @@ export default {
item.dzmarkLoading = false
item.czmarkLoading = false
item.custnoLoading = false
+ item.sqxsLoading = false
+ item.ponoLoading = false
item.rowCzMark = false
+ item.rowSqxs = false
+ item.rowPono = false
item.rowCustno = false
item.rowDzMark = false
item.atdLoading = false
@@ -1601,6 +1632,12 @@ export default {
if (item.field === 'custno') {
item.slots = { 'default': 'custno' }
}
+ if (item.field === 'shenQingXiangShi') {
+ item.slots = { 'default': 'shenQingXiangShi' }
+ }
+ if (item.field === 'pono') {
+ item.slots = { 'default': 'pono' }
+ }
if (item.label === 'LINENAME') {
item.field = 'lineName'
}
@@ -2035,9 +2072,13 @@ export default {
item.rowDzMark = false
item.rowCzMark = false
item.rowCustno = false
+ item.rowSqxs = false
+ item.rowPono = false
item.czmarkLoading = false
item.custnoLoading = false
item.dzmarkLoading = false
+ item.sqxsLoading = false
+ item.ponoLoading = false
let hasGoods = 0
item.goodsStatusList.map((gitem, gindex) => {
if (gitem.finishTime || gitem.remark) {
@@ -2146,18 +2187,25 @@ export default {
row.custnoLoading = true
data.custno = row.custno
}
+ if (type === 4) {
+ row.sqxsLoading = true
+ data.shenQingXiangShi = row.shenQingXiangShi
+ }
+ if (type === 5) {
+ row.ponoLoading = true
+ data.pono = row.pono
+ }
SaveDataInList(data).then(res => {
if (res.success) {
this.$message.success('修改成功')
- row.dzmarkLoading = false
- row.czmarkLoading = false
- row.custnoLoading = false
} else {
this.$message.error(res.message)
- row.dzmarkLoading = false
- row.czmarkLoading = false
- row.custnoLoading = false
}
+ row.dzmarkLoading = false
+ row.czmarkLoading = false
+ row.custnoLoading = false
+ row.sqxsLoading = false
+ row.ponoLoading = false
})
},
@@ -2236,27 +2284,11 @@ export default {
pressEnterFun() {
this.tableRefresh()
},
- getFocusMark(row, type) {
- if (type === 1) {
- row.rowDzMark = true
- }
- if (type === 2) {
- row.rowCzMark = true
- }
- if (type === 3) {
- row.rowCustno = true
- }
+ getFocusMark(row, file) {
+ row[file] = true
},
- getBlurMark(row, type) {
- if (type === 1) {
- row.rowDzMark = false
- }
- if (type === 2) {
- row.rowCzMark = false
- }
- if (type === 3) {
- row.rowCustno = false
- }
+ getBlurMark(row, file) {
+ row[file] = false
},
remarkhover(e, data) {
if (data.bookremark.length > 0) {
diff --git a/src/views/main/BookingLedger/list/modules/initData.js b/src/views/main/BookingLedger/list/modules/initData.js
index 6378529..02b9328 100644
--- a/src/views/main/BookingLedger/list/modules/initData.js
+++ b/src/views/main/BookingLedger/list/modules/initData.js
@@ -450,7 +450,8 @@ export default {
label: 'shenQingXiangShi',
width: 110,
title: '申请箱使',
- showHeaderOverflow: true
+ showHeaderOverflow: true,
+ slots: { default: 'shenQingXiangShi' }
},
{
field: 'thirdPay',
diff --git a/src/views/system/ServiceFlow/addForm.vue b/src/views/system/ServiceFlow/addForm.vue
index 51254ea..1cf40a7 100644
--- a/src/views/system/ServiceFlow/addForm.vue
+++ b/src/views/system/ServiceFlow/addForm.vue
@@ -8,29 +8,29 @@
@cancel="handleCancel"
:confirmLoading="confirmLoading">
-
+
-
-
+
+
-
-
+
+
-
+
{{ item.name }}
@@ -80,26 +80,26 @@
-
-
服务名称:{{ form.serviceWorkflowName }}
-
服务代码:{{ form.serviceWorkflowCode }}
+
+
服务名称:{{ form.serviceProject.serviceProjectName }}
+
服务代码:{{ form.serviceProject.serviceProjectCode }}
修改
-
-
+
+
{{ item.sortNo }}
{{ item.showName }}
-
-
+
+
@@ -123,7 +123,7 @@
服务项目:
-
+
-
- 添加子状态
+
+ 添加子状态
说明:包含子状态,可指定多个子状态,启用一个状态触发后,当前状态触发
@@ -214,11 +214,11 @@
:labelCol="{ span: 3 }"
:wrapperCol="{ span: 21 }"
:model="subActiveForm">
-
+
-
- {{ item.showName }}
+
+ {{ item.statusSKUName }}
- 123
+ {{ statusSKUCode }}
@@ -299,7 +299,7 @@