bug修改

20231126-yw
yuanwei 1 year ago
parent bd843ffc42
commit 695723fcf4

@ -572,7 +572,7 @@
:label="item.columnDesc" :label="item.columnDesc"
:width="isChoose?50:280" :width="isChoose?50:280"
:key="item.columnName" :key="item.columnName"
fixed="right"1 fixed="right"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<el-button v-for="(buttonItem, buttonIndex) in item.buttonRulObj" <el-button v-for="(buttonItem, buttonIndex) in item.buttonRulObj"

@ -635,7 +635,7 @@ export default {
}, },
deleteOrders(data) { deleteOrders(data) {
this.loading = true; this.loading = true;
this.deleteData.billNo = data; this.deleteData.billNo = data.billNo;
deleteByOrderId(this.deleteData) deleteByOrderId(this.deleteData)
.then((response) => { .then((response) => {

@ -72,7 +72,6 @@
></el-date-picker> ></el-date-picker>
</el-form-item> </el-form-item>
</template> </template>
</el-row>
<el-form-item> <el-form-item>
<el-button-group> <el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
@ -82,6 +81,7 @@
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-row> </el-row>
</el-row>
</el-form> </el-form>
<el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row <el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row
border border
@ -305,7 +305,6 @@
></el-date-picker> ></el-date-picker>
</el-form-item> </el-form-item>
</template> </template>
</el-row>
<el-form-item> <el-form-item>
<el-button-group> <el-button-group>
<el-button <el-button
@ -320,6 +319,8 @@
</el-button> </el-button>
</el-button-group> </el-button-group>
</el-form-item> </el-form-item>
</el-row>
</el-form> </el-form>
<el-table v-loading="bizDetailLoading" :data="bizDetailList" style="width: 100%" border <el-table v-loading="bizDetailLoading" :data="bizDetailList" style="width: 100%" border

@ -183,7 +183,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="item.columnName == 'failCout'" label="生产企业证书" prop="auditStatus" width="120"> <el-table-column v-if="item.columnName == 'failCout'" :label="item.columnDesc" prop="auditStatus" :width="item.width">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==0"> <el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==0">
@ -198,7 +198,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="item.columnName == 'productFailCout'" label="配送产品证书" prop="auditStatus" width="120"> <el-table-column v-if="item.columnName == 'productFailCout'" :label="item.columnDesc" prop="auditStatus" :width="item.width">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag type="danger" v-if="scope.row.productFailCout==0 && scope.row.prouctPassCout==0"> <el-tag type="danger" v-if="scope.row.productFailCout==0 && scope.row.prouctPassCout==0">
未添加证书 未添加证书
@ -538,7 +538,7 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column v-if="item.columnName == 'failCout'" label="配送产品证书" prop="auditStatus" width="120"> <el-table-column v-if="item.columnName == 'failCout'" :label="item.columnDesc" prop="auditStatus" :width="item.width">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==0"> <el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==0">

Loading…
Cancel
Save