Browse Source

完善出库申请--详情页面

master
yunuo970428 2 years ago
parent
commit
e4d899f00d
  1. 9
      anrui-buscenter/anrui-buscenter-ui/src/api/chukuguanli/chukubanli.js
  2. 13
      anrui-buscenter/anrui-buscenter-ui/src/views/chukuguanli/chukubanli/chukushenqingInfo.vue
  3. 4
      anrui-buscenter/anrui-buscenter-ui/src/views/workflow/chukuguanliFlow/chukuguanli/chukuDaiBanInfo.vue
  4. 4
      anrui-buscenter/anrui-buscenter-ui/src/views/workflow/chukuguanliFlow/chukuguanli/chukuYiBanInfo.vue

9
anrui-buscenter/anrui-buscenter-ui/src/api/chukuguanli/chukubanli.js

@ -135,6 +135,15 @@ export function getRetrievalApplyInfo(data) {
})
}
// 待出库车辆选择后--返回出库申请页面调用初始化
export function getRetrievalApplyInfoBySid(data) {
return request({
url: '/buscenter/v1/busdeliveredapply/getRetrievalApplyInfoBySid',
method: 'get',
params: data
})
}
// 补充待出库车辆选择后--返回出库申请页面调用--仅返回车辆列表信息
export function selectInfo(data) {
return request({

13
anrui-buscenter/anrui-buscenter-ui/src/views/chukuguanli/chukubanli/chukushenqingInfo.vue

@ -163,7 +163,7 @@
</template>
<script>
import { getRetrievalApplyInfo, trailerList } from '@/api/chukuguanli/chukubanli'
import { getRetrievalApplyInfoBySid, trailerList } from '@/api/chukuguanli/chukubanli'
import userInfoLook from './relation/userInfoLook'
import guacheInfo from './relation/guacheInfo'
import shangzhuangInfo from './relation/shangzhuangInfo'
@ -222,14 +222,6 @@ export default {
userSid: '',
discountLeave: []
},
arguments: {
list: [],
userSid: '',
orgPath: '',
contractId: '',
outboundSid: '',
pcView: true
},
rules: {}
}
},
@ -242,8 +234,7 @@ export default {
this.$nextTick(() => {
this.$refs['dataForm'].clearValidate()
})
this.arguments.outboundSid = sid
getRetrievalApplyInfo(this.arguments).then((response) => {
getRetrievalApplyInfoBySid({ sid: sid }).then((response) => {
if (response.success) {
this.formobj = response.data
}

4
anrui-buscenter/anrui-buscenter-ui/src/views/workflow/chukuguanliFlow/chukuguanli/chukuDaiBanInfo.vue

@ -201,7 +201,7 @@
</template>
<script>
import { getRetrievalApplyInfo, trailerList, complete, breakProcess, reject, getPreviousNodesForReject, getNextNodesForSubmit } from '@/api/chukuguanli/chukubanli'
import { getRetrievalApplyInfoBySid, trailerList, complete, breakProcess, reject, getPreviousNodesForReject, getNextNodesForSubmit } from '@/api/chukuguanli/chukubanli'
import userInfo from './relation/userInfo'
import guacheInfo from './relation/guacheInfo'
import shangzhuangInfo from './relation/shangzhuangInfo'
@ -335,7 +335,7 @@ export default {
this.$refs['dataForm'].clearValidate()
})
this.arguments.outboundSid = sid
getRetrievalApplyInfo(this.arguments).then((response) => {
getRetrievalApplyInfoBySid(this.arguments).then((response) => {
if (response.success) {
this.formobj = response.data
}

4
anrui-buscenter/anrui-buscenter-ui/src/views/workflow/chukuguanliFlow/chukuguanli/chukuYiBanInfo.vue

@ -173,7 +173,7 @@
</template>
<script>
import { getRetrievalApplyInfo, trailerList, revokeProcess } from '@/api/chukuguanli/chukubanli'
import { getRetrievalApplyInfoBySid, trailerList, revokeProcess } from '@/api/chukuguanli/chukubanli'
import userInfo from './relation/userInfo'
import guacheInfo from './relation/guacheInfo'
import shangzhuangInfo from './relation/shangzhuangInfo'
@ -293,7 +293,7 @@ export default {
this.$refs['dataForm'].clearValidate()
})
this.arguments.outboundSid = sid
getRetrievalApplyInfo(this.arguments).then((response) => {
getRetrievalApplyInfoBySid(this.arguments).then((response) => {
if (response.success) {
this.formobj = response.data
}

Loading…
Cancel
Save