|
|
|
@ -3,7 +3,8 @@
|
|
|
|
|
|
|
|
|
|
<!-- 配送企业资质 -->
|
|
|
|
|
<el-card>
|
|
|
|
|
<el-form if="queryList && queryList.length > 0" :model="filterQuery" class="query-form" size="mini" label-width="120px" v-show="showSearch">
|
|
|
|
|
<el-form if="queryList && queryList.length > 0" :model="filterQuery" class="query-form" size="mini"
|
|
|
|
|
label-width="120px" v-show="showSearch">
|
|
|
|
|
<!-- <el-row>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item label="配送企业名称:">-->
|
|
|
|
@ -19,8 +20,10 @@
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- </el-row>-->
|
|
|
|
|
<el-row style=" display:flex; flex-wrap: wrap; ">
|
|
|
|
|
<template v-for="(item, index) in queryList" >
|
|
|
|
|
<el-form-item :style="item.style?item.style:item.width?'width:'+(item.width)+'px':''" v-if="item.columnType == 'input' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<template v-for="(item, index) in queryList">
|
|
|
|
|
<el-form-item :style="item.style?item.style:item.width?'width:'+(item.width)+'px':''"
|
|
|
|
|
v-if="item.columnType == 'input' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
@ -29,7 +32,8 @@
|
|
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'select' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'select' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-select v-model="filterQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
@ -42,7 +46,8 @@
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'selectServer' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'selectServer' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
@ -59,7 +64,8 @@
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePicker' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePicker' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="dateRange"
|
|
|
|
|
:style="`width:${item.width+'px'}`"
|
|
|
|
@ -72,7 +78,8 @@
|
|
|
|
|
:default-time="['00:00:00', '23:59:59']"
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'date' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'date' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
|
:style="`width:${item.width+'px'}`"
|
|
|
|
@ -196,7 +203,9 @@
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{ item.lableRuleObj[scope.row[item.columnName]] }}</span>
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{
|
|
|
|
|
item.lableRuleObj[scope.row[item.columnName]]
|
|
|
|
|
}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
@ -209,8 +218,11 @@
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
|
<span>{{ item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName] }}</span>
|
|
|
|
|
<el-tag
|
|
|
|
|
:type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
|
<span>{{
|
|
|
|
|
item.lableRuleObj ? item.lableRuleObj[scope.row[item.columnName]] : scope.row[item.columnName]
|
|
|
|
|
}}</span>
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
@ -245,11 +257,14 @@
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{ scope.row[item.columnName] }}</span>
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{
|
|
|
|
|
scope.row[item.columnName]
|
|
|
|
|
}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column v-if="item.columnName == 'failCout'" :label="item.columnDesc" prop="auditStatus" :width="item.width">
|
|
|
|
|
<el-table-column v-if="item.columnName == 'failCout'" :label="item.columnDesc" prop="auditStatus"
|
|
|
|
|
:width="item.width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
|
|
<el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==0">
|
|
|
|
@ -264,7 +279,8 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column v-if="item.columnName == 'productFailCout'" :label="item.columnDesc" prop="auditStatus" :width="item.width">
|
|
|
|
|
<el-table-column v-if="item.columnName == 'productFailCout'" :label="item.columnDesc" prop="auditStatus"
|
|
|
|
|
:width="item.width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag type="danger" v-if="scope.row.productFailCout==0 && scope.row.prouctPassCout==0">
|
|
|
|
|
未添加证书
|
|
|
|
@ -311,7 +327,8 @@
|
|
|
|
|
|
|
|
|
|
<!-- 生产企业资质 -->
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
<el-form v-if="queryList2 && queryList2.length > 0" :model="filterManufacturerQuery" class="query-form" label-width="120px" v-show="showSearch2">
|
|
|
|
|
<el-form v-if="queryList2 && queryList2.length > 0" :model="filterManufacturerQuery" class="query-form"
|
|
|
|
|
label-width="120px" v-show="showSearch2">
|
|
|
|
|
<!-- <el-row>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item label="生产企业名称">-->
|
|
|
|
@ -327,8 +344,9 @@
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- </el-row>-->
|
|
|
|
|
<el-row style=" display:flex; flex-wrap: wrap; ">
|
|
|
|
|
<template v-for="(item, index) in queryList2" >
|
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<template v-for="(item, index) in queryList2">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterManufacturerQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
@ -337,7 +355,8 @@
|
|
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'select' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'select' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-select v-model="filterManufacturerQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
@ -350,7 +369,8 @@
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'selectServer' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'selectServer' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="filterManufacturerQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
@ -367,7 +387,8 @@
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePicker' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePicker' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="dateRange"
|
|
|
|
|
:style="`width:${item.width+'px'}`"
|
|
|
|
@ -380,7 +401,8 @@
|
|
|
|
|
:default-time="['00:00:00', '23:59:59']"
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'date' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'date' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="filterManufacturerQuery[item.columnName]"
|
|
|
|
|
:style="`width:${item.width+'px'}`"
|
|
|
|
@ -484,7 +506,9 @@
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{ item.lableRuleObj[scope.row[item.columnName]] }}</span>
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{
|
|
|
|
|
item.lableRuleObj[scope.row[item.columnName]]
|
|
|
|
|
}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
@ -497,8 +521,11 @@
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
|
<span>{{ item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName] }}</span>
|
|
|
|
|
<el-tag
|
|
|
|
|
:type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
|
<span>{{
|
|
|
|
|
item.lableRuleObj ? item.lableRuleObj[scope.row[item.columnName]] : scope.row[item.columnName]
|
|
|
|
|
}}</span>
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
@ -533,11 +560,14 @@
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{ scope.row[item.columnName] }}</span>
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{
|
|
|
|
|
scope.row[item.columnName]
|
|
|
|
|
}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column v-if="item.columnName == 'failCout'" :label="item.columnDesc" prop="auditStatus" :width="item.width">
|
|
|
|
|
<el-table-column v-if="item.columnName == 'failCout'" :label="item.columnDesc" prop="auditStatus"
|
|
|
|
|
:width="item.width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
|
|
<el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==0">
|
|
|
|
@ -588,7 +618,8 @@
|
|
|
|
|
|
|
|
|
|
<!-- 配送产品资质 -->
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
<el-form v-if="queryList3 && queryList3.length > 0" :model="registrationQuery" class="query-form" label-width="120px" v-show="showSearch3">
|
|
|
|
|
<el-form v-if="queryList3 && queryList3.length > 0" :model="registrationQuery" class="query-form"
|
|
|
|
|
label-width="120px" v-show="showSearch3">
|
|
|
|
|
<!-- <el-row>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item label="物资名称:">-->
|
|
|
|
@ -610,8 +641,9 @@
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- </el-row>-->
|
|
|
|
|
<el-row style=" display:flex; flex-wrap: wrap; ">
|
|
|
|
|
<template v-for="(item, index) in queryList3" >
|
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<template v-for="(item, index) in queryList3">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="registrationQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
@ -620,7 +652,8 @@
|
|
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'select' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'select' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-select v-model="registrationQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
@ -633,7 +666,8 @@
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'selectServer' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'selectServer' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="registrationQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
@ -650,7 +684,8 @@
|
|
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePicker' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePicker' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="dateRange"
|
|
|
|
|
:style="`width:${item.width+'px'}`"
|
|
|
|
@ -663,7 +698,8 @@
|
|
|
|
|
:default-time="['00:00:00', '23:59:59']"
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'date' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'date' && executeEval(row,item.expression,true)"
|
|
|
|
|
:label="item.columnDesc+`:`">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="registrationQuery[item.columnName]"
|
|
|
|
|
:style="`width:${item.width+'px'}`"
|
|
|
|
@ -758,7 +794,9 @@
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{ item.lableRuleObj[scope.row[item.columnName]] }}</span>
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{
|
|
|
|
|
item.lableRuleObj[scope.row[item.columnName]]
|
|
|
|
|
}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
@ -771,8 +809,11 @@
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
|
<span>{{ item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName] }}</span>
|
|
|
|
|
<el-tag
|
|
|
|
|
:type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
|
<span>{{
|
|
|
|
|
item.lableRuleObj ? item.lableRuleObj[scope.row[item.columnName]] : scope.row[item.columnName]
|
|
|
|
|
}}</span>
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
@ -807,7 +848,9 @@
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{ scope.row[item.columnName] }}</span>
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{
|
|
|
|
|
scope.row[item.columnName]
|
|
|
|
|
}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</template>
|
|
|
|
@ -850,7 +893,7 @@ import {deleteCompany, getCompanyList} from "@/api/purchase/supManufacturer";
|
|
|
|
|
import suppliersRegistrationBasic from "@/views/purchase/product/supProductAuditDialog";
|
|
|
|
|
import {deleteRegistration, getRegistrationList} from "@/api/purchase/suppliersRegistrationBasic";
|
|
|
|
|
import {
|
|
|
|
|
getHead,executeFuc
|
|
|
|
|
getHead, executeFuc
|
|
|
|
|
} from "@/utils/customConfig";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -871,17 +914,16 @@ export default {
|
|
|
|
|
loading: false,
|
|
|
|
|
list: [],
|
|
|
|
|
total: 0,
|
|
|
|
|
tableHeader:[],
|
|
|
|
|
queryList:[],
|
|
|
|
|
fromList:[],
|
|
|
|
|
tableHeader2:[],
|
|
|
|
|
queryList2:[],
|
|
|
|
|
fromList2:[],
|
|
|
|
|
tableHeader3:[],
|
|
|
|
|
queryList3:[],
|
|
|
|
|
fromList3:[],
|
|
|
|
|
options:{
|
|
|
|
|
},
|
|
|
|
|
tableHeader: [],
|
|
|
|
|
queryList: [],
|
|
|
|
|
fromList: [],
|
|
|
|
|
tableHeader2: [],
|
|
|
|
|
queryList2: [],
|
|
|
|
|
fromList2: [],
|
|
|
|
|
tableHeader3: [],
|
|
|
|
|
queryList3: [],
|
|
|
|
|
fromList3: [],
|
|
|
|
|
options: {},
|
|
|
|
|
formName: 1,
|
|
|
|
|
formMap: {
|
|
|
|
|
1: "配送企业资质详情",
|
|
|
|
@ -1044,10 +1086,10 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
onSubmit() {
|
|
|
|
|
this.filterQuery.page=1;
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
editCompany(_this,row) {
|
|
|
|
|
editCompany(_this, row) {
|
|
|
|
|
if (row.auditStatus == 6 || row.auditStatus == 3 || row.auditStatus == 4) {
|
|
|
|
|
_this.formName = 2;
|
|
|
|
|
_this.editType = 2;
|
|
|
|
@ -1084,7 +1126,7 @@ export default {
|
|
|
|
|
this.supCompanyVisible = false;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
supCompanyClick(_this,row) {
|
|
|
|
|
supCompanyClick(_this, row) {
|
|
|
|
|
_this.filterManufacturerQuery.customerId = row.customerId;
|
|
|
|
|
_this.registrationList = [];
|
|
|
|
|
_this.onManufacturerReset();
|
|
|
|
@ -1116,7 +1158,7 @@ export default {
|
|
|
|
|
this.getManufacturerList();
|
|
|
|
|
},
|
|
|
|
|
onManufacturerSubmit() {
|
|
|
|
|
this.filterManufacturerQuery.page=1;
|
|
|
|
|
this.filterManufacturerQuery.page = 1;
|
|
|
|
|
//this.onManufacturerReset();
|
|
|
|
|
this.getManufacturerList();
|
|
|
|
|
this.addInfoVisible = false;
|
|
|
|
@ -1139,7 +1181,7 @@ export default {
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
addInfoDialog(_this,row) {
|
|
|
|
|
addInfoDialog(_this, row) {
|
|
|
|
|
|
|
|
|
|
if (row.auditStatus == 6 || row.auditStatus == 3 || row.auditStatus == 4) {
|
|
|
|
|
_this.editManufacturerType = 2;
|
|
|
|
@ -1168,7 +1210,7 @@ export default {
|
|
|
|
|
this.getManufacturerList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
supManufacturerClick(_this,row) {
|
|
|
|
|
supManufacturerClick(_this, row) {
|
|
|
|
|
_this.registrationQuery.customerId = row.customerId;
|
|
|
|
|
_this.registrationQuery.manufacturerIdFk = row.manufacturerId;
|
|
|
|
|
_this.onReset2();
|
|
|
|
@ -1194,13 +1236,13 @@ export default {
|
|
|
|
|
this.getRegistrationList();
|
|
|
|
|
},
|
|
|
|
|
onSubmit2() {
|
|
|
|
|
this.registrationQuery.page=1;
|
|
|
|
|
this.registrationQuery.page = 1;
|
|
|
|
|
this.getRegistrationList();
|
|
|
|
|
},
|
|
|
|
|
hideSearch3() {
|
|
|
|
|
this.showSearch3 = !this.showSearch3;
|
|
|
|
|
},
|
|
|
|
|
registrationDialog(_this,row) {
|
|
|
|
|
registrationDialog(_this, row) {
|
|
|
|
|
if (row.auditStatus == 2) {
|
|
|
|
|
_this.editProductType = 2;
|
|
|
|
|
_this.formProductName = 1;
|
|
|
|
@ -1239,11 +1281,11 @@ export default {
|
|
|
|
|
this.registrationQuery.page = val.page;
|
|
|
|
|
this.getRegistrationList();
|
|
|
|
|
},
|
|
|
|
|
executeFuc(row,type,clickFuc,value){
|
|
|
|
|
return executeFuc(this,row,type,clickFuc,value);
|
|
|
|
|
executeFuc(row, type, clickFuc, value) {
|
|
|
|
|
return executeFuc(this, row, type, clickFuc, value);
|
|
|
|
|
},
|
|
|
|
|
executeEval(row,expression,defaultRet){
|
|
|
|
|
if(expression){
|
|
|
|
|
executeEval(row, expression, defaultRet) {
|
|
|
|
|
if (expression) {
|
|
|
|
|
return eval(expression);
|
|
|
|
|
}
|
|
|
|
|
return defaultRet;
|
|
|
|
@ -1256,7 +1298,14 @@ export default {
|
|
|
|
|
,
|
|
|
|
|
|
|
|
|
|
created() {
|
|
|
|
|
getHead("supCertAudit-1","1").then((re) => {
|
|
|
|
|
let unitIdFk = this.$route.query.unitIdFk;
|
|
|
|
|
let manuIdFk = this.$route.query.manuIdFk;
|
|
|
|
|
let productIdFk = this.$route.query.productIdFk;
|
|
|
|
|
if (unitIdFk != null) {
|
|
|
|
|
this.filterQuery.customerId = unitIdFk;
|
|
|
|
|
this.filterManufacturerQuery.customerId = unitIdFk;
|
|
|
|
|
}
|
|
|
|
|
getHead("supCertAudit-1", "1").then((re) => {
|
|
|
|
|
// 处理返回的数据
|
|
|
|
|
this.tableObj = re.data;
|
|
|
|
|
this.tableHeader = re.data.tableList;
|
|
|
|
@ -1264,20 +1313,31 @@ export default {
|
|
|
|
|
this.fromList = re.data.fromList;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
getHead("supCertAudit-2","1").then((re) => {
|
|
|
|
|
getHead("supCertAudit-2", "1").then((re) => {
|
|
|
|
|
// 处理返回的数据
|
|
|
|
|
this.tableObj2 = re.data;
|
|
|
|
|
this.tableHeader2 = re.data.tableList;
|
|
|
|
|
this.queryList2 = re.data.queryList;
|
|
|
|
|
this.fromList2 = re.data.fromList;
|
|
|
|
|
});
|
|
|
|
|
getHead("supCertAudit-3","1").then((re) => {
|
|
|
|
|
getHead("supCertAudit-3", "1").then((re) => {
|
|
|
|
|
// 处理返回的数据
|
|
|
|
|
this.tableObj3= re.data;
|
|
|
|
|
this.tableObj3 = re.data;
|
|
|
|
|
this.tableHeader3 = re.data.tableList;
|
|
|
|
|
this.queryList3 = re.data.queryList;
|
|
|
|
|
this.fromList3 = re.data.fromList;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (manuIdFk != null) {
|
|
|
|
|
this.filterManufacturerQuery.manufacturerId = manuIdFk;
|
|
|
|
|
this.registrationQuery.manufacturerIdFk = manuIdFk;
|
|
|
|
|
this.getManufacturerList();
|
|
|
|
|
}
|
|
|
|
|
if (productIdFk != null) {
|
|
|
|
|
this.registrationQuery.productId = productIdFk;
|
|
|
|
|
this.getRegistrationList();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|