|
@@ -562,7 +562,6 @@
|
|
|
? (detailsHidden2 = false)
|
|
|
: (detailsHidden2 = true)
|
|
|
"
|
|
|
- v-if="dataShowcar == 0"
|
|
|
>{{ detailsHidden2 ? "隐藏" : "更多" }}
|
|
|
</el-button>
|
|
|
<el-button
|
|
@@ -3089,8 +3088,10 @@ export default {
|
|
|
this.getConfigKey("data_showcar").then((response) => {
|
|
|
this.dataShowcar = response.msg;
|
|
|
if (this.dataShowcar == "0") {
|
|
|
- this.detailsHidden2 = false;
|
|
|
+ this.detailsHidden2 = true;
|
|
|
this.form.fBusinessType = "0";
|
|
|
+ } else {
|
|
|
+ this.detailsHidden2 = false;
|
|
|
}
|
|
|
});
|
|
|
this.getConfigKey("instock.orders.approval").then((response) => {
|
|
@@ -3241,6 +3242,8 @@ export default {
|
|
|
this.CntrTable = [];
|
|
|
this.sumMum = 0;
|
|
|
if (this.dataShowcar == "0") {
|
|
|
+ this.detailsHidden2 = true;
|
|
|
+ } else {
|
|
|
this.detailsHidden2 = false;
|
|
|
}
|
|
|
if (this.$route.query.id) {
|