bug修改

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

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

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

@ -72,15 +72,15 @@
></el-date-picker>
</el-form-item>
</template>
<el-form-item>
<el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="getList"></el-button>
<el-button type="primary" icon="el-icon-delete" @click="deleteAllOrder"></el-button>
<el-button type="primary" icon="el-icon-edit" @click="editOrders"></el-button>
</el-button-group>
</el-form-item>
</el-row>
<el-form-item>
<el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="getList"></el-button>
<el-button type="primary" icon="el-icon-delete" @click="deleteAllOrder"></el-button>
<el-button type="primary" icon="el-icon-edit" @click="editOrders"></el-button>
</el-button-group>
</el-form-item>
</el-row>
</el-form>
<el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row
@ -305,21 +305,22 @@
></el-date-picker>
</el-form-item>
</template>
<el-form-item>
<el-button-group>
<el-button
type="primary"
icon="el-icon-refresh"
@click="onBizReset"
>重置
</el-button>
<el-button type="primary" @click="onBizSubmit"
icon="el-icon-search"
>查询
</el-button>
</el-button-group>
</el-form-item>
</el-row>
<el-form-item>
<el-button-group>
<el-button
type="primary"
icon="el-icon-refresh"
@click="onBizReset"
>重置
</el-button>
<el-button type="primary" @click="onBizSubmit"
icon="el-icon-search"
>查询
</el-button>
</el-button-group>
</el-form-item>
</el-form>
<el-table v-loading="bizDetailLoading" :data="bizDetailList" style="width: 100%" border

@ -183,7 +183,7 @@
</template>
</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">
<el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==0">
@ -198,7 +198,7 @@
</template>
</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">
<el-tag type="danger" v-if="scope.row.productFailCout==0 && scope.row.prouctPassCout==0">
未添加证书
@ -538,7 +538,7 @@
</template>
</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">
<el-tag type="danger" v-if="scope.row.failCout==0 && scope.row.passCout==0">

Loading…
Cancel
Save