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

Loading…
Cancel
Save