From 57b7e93baf35afbb9e1c569477052daa01de4699 Mon Sep 17 00:00:00 2001 From: zhaoxiaoqiang <287285524@qq.com> Date: Wed, 06 Sep 2023 17:56:20 +0800 Subject: [PATCH] 编辑器,项目新增,管理员订单管理 --- src/views/qyp-project-order/index.vue | 13 ++++++------- 1 files changed, 6 insertions(+), 7 deletions(-) diff --git a/src/views/qyp-project-order/index.vue b/src/views/qyp-project-order/index.vue index ca6068c..87edda3 100644 --- a/src/views/qyp-project-order/index.vue +++ b/src/views/qyp-project-order/index.vue @@ -77,14 +77,13 @@ </el-form-item> </div> <el-form-item style="text-align: right;"> - <!-- v-if='filterBtnById("150102")' --> <el-button type="primary" style="margin-left: 10px;margin-bottom: 8px;" @click="onSearch">查 询</el-button> </el-form-item> </el-form> </div> <div class="table_box"> <div style="margin-left: 10px;text-align: right;"> - <el-button type="primary" size="small" @click="addProduct">导出excel</el-button> + <el-button type="primary" size="small" @click="addProduct" v-if='filterBtnById("430101")' >导出excel</el-button> </div> <Etable hasIndex @@ -97,7 +96,7 @@ @handleSelectionChange="handleSelectionChange" :exportUrl="{ url: '/qyp/order/orderExport', - powerId: '', + powerId: '430102', name: '订单列表', }" ></Etable> @@ -183,9 +182,9 @@ type:'text' }, style: { - // display: this.filterBtnById(150101) - // ? "inline-block" - // : "none", + display: this.filterBtnById(430103) + ? "inline-block" + : "none", }, on: { click: () => { @@ -245,7 +244,7 @@ } let objForm = JSON.parse(JSON.stringify(this.formInline)); for (let key in objForm) { - if (objForm[key] === "all") { + if (objForm[key] === "all"||objForm[key] === ""||objForm[key] === null) { delete objForm[key]; } } -- Gitblit v1.8.0