Commit f87752b1 by Kyle_Li

.

parent bb0988f5
...@@ -12,12 +12,10 @@ ...@@ -12,12 +12,10 @@
style="width: 400px" style="width: 400px"
@change="onSearchDataChange"> @change="onSearchDataChange">
</el-date-picker> </el-date-picker>
<el-select v-model="searchData.enterpriseId" filterable @change="onSearchChange"> <el-select v-model="searchData.enterpriseId" filterable @change="onSearchChange" clearable>
<el-option label="全部" value=""></el-option>
<el-option v-for="(item, index) in enterpriseList" :key="index" :label="item.enterpriseName" :value="item.enterpriseId"></el-option> <el-option v-for="(item, index) in enterpriseList" :key="index" :label="item.enterpriseName" :value="item.enterpriseId"></el-option>
</el-select> </el-select>
<el-select v-model="searchData.code" filterable @change="onSearchChange"> <el-select v-model="searchData.code" filterable @change="onSearchChange" clearable>
<el-option label="全部" :value="null"></el-option>
<el-option v-for="(item, index) in erpList" :key="index" :label="item.interFaceCatoryName" :value="item.interFaceCatoryCode"></el-option> <el-option v-for="(item, index) in erpList" :key="index" :label="item.interFaceCatoryName" :value="item.interFaceCatoryCode"></el-option>
</el-select> </el-select>
<el-input v-model.trim="searchData.input" prefix-icon="el-icon-search" @keydown.enter.native="searchStrategy" placeholder="请输入" style="width:280px;margin-left:10px"> <el-input v-model.trim="searchData.input" prefix-icon="el-icon-search" @keydown.enter.native="searchStrategy" placeholder="请输入" style="width:280px;margin-left:10px">
...@@ -212,8 +210,8 @@ export default { ...@@ -212,8 +210,8 @@ export default {
putRequest(`/gic-platform-operation/erp/retry/${id}`, params).then(res => { putRequest(`/gic-platform-operation/erp/retry/${id}`, params).then(res => {
const { data } = res; const { data } = res;
this.$message({ this.$message({
type: data.result == 0 ? 'success' : 'warning', type: data.result == 1 ? 'warning' : 'success',
message: data.result == 0 ? '重试成功' : data.message, message: data.result == 1 ? data.message : '重试成功',
}); });
this.getLogsList(); this.getLogsList();
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment