Browse Source

2025-04-09

master
qiezi 9 months ago
parent
commit
2c7ddee9cc
  1. 6
      src/views/modules/customer/customerInformationManagement.vue

6
src/views/modules/customer/customerInformationManagement.vue

@ -17,8 +17,8 @@
</el-form-item> </el-form-item>
<el-form-item :label="' '"> <el-form-item :label="' '">
<el-button @click="getDataList">查询</el-button> <el-button @click="getDataList">查询</el-button>
<el-button type="primary" @click="addModal">新增</el-button>
<el-button type="primary" @click="delModal">删除</el-button>
<el-button type="primary" v-if="isAuth('101001001:save')" @click="addModal">新增</el-button>
<el-button type="primary" v-if="isAuth('101001001:remove')" @click="delModal">删除</el-button>
<download-excel <download-excel
:fields="fields()" :fields="fields()"
:data="exportData" :data="exportData"
@ -75,7 +75,7 @@
width="100" width="100"
label="操作"> label="操作">
<template slot-scope="scope"> <template slot-scope="scope">
<el-link style="cursor: pointer" @click="updateModal(scope.row)">编辑</el-link>
<el-link style="cursor: pointer" v-if="isAuth('101001001:update')" @click="updateModal(scope.row)">编辑</el-link>
<el-link style="cursor: pointer" @click="detailModal(scope.row)">详情</el-link> <el-link style="cursor: pointer" @click="detailModal(scope.row)">详情</el-link>
</template> </template>
</el-table-column> </el-table-column>

Loading…
Cancel
Save