|
|
|
@ -651,7 +651,7 @@ export default {
|
|
|
|
|
code: this.formData.code.trim(),
|
|
|
|
|
}
|
|
|
|
|
enterCodeWeb(tQuery).then((response) => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
@ -700,7 +700,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
addCode(event) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.originCode = "";
|
|
|
|
|
this.sictomText = "";
|
|
|
|
|
this.formData.corpOrderId = this.formData.corpOrderId.trim();
|
|
|
|
@ -765,7 +765,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
addCodeSubmit(tQuery) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
addOrderWeb(tQuery).then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.idQuery.id = response.data.orderId;
|
|
|
|
@ -834,10 +834,14 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
this.$message({
|
|
|
|
|
type: 'error',
|
|
|
|
|
message: "提交失败!" + this.editTitle,
|
|
|
|
|
customClass: 'messageIndex'
|
|
|
|
|
this.$alert(response.message, '提示', {
|
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
|
type: 'warning',
|
|
|
|
|
closeOnClickModal: true,
|
|
|
|
|
callback: action => {
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -930,7 +934,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
getLocalJoinByUser(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
|
if (this.formData.action != null) {
|
|
|
|
|
this.curAction = this.getActionItem(this.formData.action);
|
|
|
|
@ -968,7 +972,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
findMethod(query) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.fromOptions = [];
|
|
|
|
|
let cQuery = {
|
|
|
|
|
key: query,
|
|
|
|
@ -1099,7 +1103,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
actionChange(item) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.curAction = this.getActionItem(item);
|
|
|
|
|
this.findMethod();
|
|
|
|
|
|
|
|
|
@ -1223,11 +1227,11 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
created() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.formData.code = '';
|
|
|
|
|
this.formData.actDate = new Date();
|
|
|
|
|
this.codeArray = [];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.getStorage(this.formData.action);
|
|
|
|
|
|
|
|
|
|
if (this.$isNotBlank(this.idQuery.id)) {
|
|
|
|
|