Browse Source

2024-12-20

接口更新
master
fengyuan_yang 1 year ago
parent
commit
5b21bfec6b
  1. 5
      src/views/modules/part/routingManagement.vue

5
src/views/modules/part/routingManagement.vue

@ -3504,6 +3504,7 @@ export default {
type: "warning" type: "warning"
}).then(() => { }).then(() => {
let tempData = { let tempData = {
updateBy: this.$store.state.user.name,
informationList: this.checkedDetail informationList: this.checkedDetail
} }
deleteRoutingComponent(tempData).then(({data}) => { deleteRoutingComponent(tempData).then(({data}) => {
@ -4175,6 +4176,7 @@ export default {
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
this.detailData.updateBy = this.$store.state.user.site
routingDetailDelete(this.detailData).then(({data}) => { routingDetailDelete(this.detailData).then(({data}) => {
if (data && data.code === 0) { if (data && data.code === 0) {
this.detailData = data.rows.detailData this.detailData = data.rows.detailData
@ -4204,6 +4206,7 @@ export default {
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
this.detailData.updateBy = this.$store.state.user.name
updateAlternativeStatus(this.detailData).then(({data}) => { updateAlternativeStatus(this.detailData).then(({data}) => {
if (data && data.code === 0) { if (data && data.code === 0) {
this.detailDataList = data.rows.detailDataList this.detailDataList = data.rows.detailDataList
@ -4272,6 +4275,7 @@ export default {
// RoutingRouting // RoutingRouting
toBecomeOfficialRouting () { toBecomeOfficialRouting () {
this.detailData.updateBy = this.$store.state.user.name
this.toBecomeOfficialLoading = true this.toBecomeOfficialLoading = true
toBecomeOfficialRouting(this.detailData).then(({data}) => { toBecomeOfficialRouting(this.detailData).then(({data}) => {
if (data && data.code === 0) { if (data && data.code === 0) {
@ -4364,6 +4368,7 @@ export default {
type: "warning" type: "warning"
}).then(() => { }).then(() => {
let tempData = { let tempData = {
updateBy: this.$store.state.user.name,
informationList: this.checkedTool informationList: this.checkedTool
} }
deleteRoutingTool(tempData).then(({data}) => { deleteRoutingTool(tempData).then(({data}) => {

Loading…
Cancel
Save