123
This commit is contained in:
parent
031b95cec1
commit
87c91f7826
|
@ -1,11 +0,0 @@
|
|||
#for tests only !
|
||||
#Thu Jun 13 17:04:23 CST 2024
|
||||
jco.destination.pool_capacity=10
|
||||
jco.client.lang=ZH
|
||||
jco.client.ashost=172.19.0.120
|
||||
jco.client.saprouter=
|
||||
jco.client.user=RFC
|
||||
jco.client.sysnr=00
|
||||
jco.destination.peak_limit=10
|
||||
jco.client.passwd=654321
|
||||
jco.client.client=300
|
|
@ -125,3 +125,7 @@ spring:
|
|||
remove-abandoned-timeout: 20
|
||||
#关闭abanded连接时输出错误日志
|
||||
log-abandoned: false
|
||||
#默认为false。因此,如果想让数据库和网络故障恢复之后,pool能继续请求正常资源必须把此项配置设为false)
|
||||
break-after-acquire-failure: false
|
||||
fail-fast: true
|
||||
time-between-connect-error-millis: 10000
|
||||
|
|
|
@ -106,6 +106,8 @@
|
|||
this.total = response.data.length;
|
||||
this.currentPage = 1;
|
||||
this.loading = false;
|
||||
},response => {
|
||||
this.loading = false;
|
||||
});
|
||||
},
|
||||
/** 搜索按钮操作 */
|
||||
|
|
|
@ -1179,6 +1179,8 @@ export default {
|
|||
//this.qccTotal = response.total;
|
||||
//this.qccCurrentPage = 1;
|
||||
this.qccLoading = false;
|
||||
},response => {
|
||||
this.qccLoading = false;
|
||||
});
|
||||
});
|
||||
},
|
||||
|
@ -1250,6 +1252,8 @@ export default {
|
|||
this.bankCodeTotal = response.total;
|
||||
this.bankCodeCurrentPage = 1;
|
||||
this.bankCodeLoading = false;
|
||||
},response => {
|
||||
this.bankCodeLoading = false;
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -152,7 +152,6 @@
|
|||
<dict-tag :options="dict.type.quot_hj_approval_status" :value="scope.row.quotHjApprovalStatus" v-if="scope.row.quotHjApprovalStatus!=0"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="金思维报价单号" align="center" prop="quotJswCode" width="280px" v-if="checkRole(['QUOT'])"/>
|
||||
<el-table-column label="是否打印" align="center" prop="quotPrint" v-if="$auth.hasPermi('quot:quot:changQuotPrintStatus')">
|
||||
<template slot-scope="scope">
|
||||
<el-switch
|
||||
|
@ -165,6 +164,7 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="打印人" align="center" prop="quotPrintUserName" width="150px" v-if="$auth.hasPermi('quot:quot:changQuotPrintStatus')"/>
|
||||
<el-table-column label="金思维报价单号" align="center" prop="quotJswCode" width="280px" v-if="checkRole(['QUOT'])"/>
|
||||
<el-table-column label="询价日期" align="center" prop="quotInquiryDate" width="160">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.quotInquiryDate) }}</span>
|
||||
|
@ -1467,11 +1467,11 @@ export default {
|
|||
return;
|
||||
}
|
||||
|
||||
const quotFkFileNum = this.quotFkFileList.length;
|
||||
/*const quotFkFileNum = this.quotFkFileList.length;
|
||||
if(quotFkFileNum==0){
|
||||
this.$modal.msgError("反馈附件必须上传");
|
||||
return;
|
||||
}
|
||||
}*/
|
||||
feedbackQuot(this.form).then(response => {
|
||||
this.$modal.msgSuccess("提交反馈成功");
|
||||
this.open = false;
|
||||
|
|
Loading…
Reference in New Issue