|
@@ -34,7 +34,7 @@
|
|
|
@load="load"
|
|
|
>
|
|
|
<template slot="customize">
|
|
|
- <el-button @click="openDialog({}, 4)" type="success">
|
|
|
+ <el-button v-if="type == 0" @click="openDialog({}, 4)" type="success">
|
|
|
坏账设置
|
|
|
</el-button>
|
|
|
<el-button @click="batchExport" type="primary"> 导出excel </el-button>
|
|
@@ -62,7 +62,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<template slot="divideCheckStatus" slot-scope="props">
|
|
|
- <div>
|
|
|
+ <div v-if="props.scope.row.billType != 7">
|
|
|
{{
|
|
|
divideCheckStatus(
|
|
|
props.scope.row.orderSn,
|
|
@@ -80,7 +80,7 @@
|
|
|
</template>
|
|
|
<template slot="btn" slot-scope="props">
|
|
|
<el-button
|
|
|
- v-if="props.scope.row.oId"
|
|
|
+ v-if="props.scope.row.oId || type == 0"
|
|
|
type="text"
|
|
|
@click="openDialog(props.scope.row, 3)"
|
|
|
>
|
|
@@ -878,7 +878,7 @@ export default {
|
|
|
if (this.type == 0 || this.type == 2) {
|
|
|
data.push({
|
|
|
prop: "keyNo",
|
|
|
- placeholder: "业务员号",
|
|
|
+ placeholder: "业务号",
|
|
|
});
|
|
|
}
|
|
|
return data;
|