| | |
| | | </el-form-item> |
| | | </el-form> |
| | | |
| | | <div class="gd-table-toolbar"> |
| | | <el-button v-if="permission.orderUser_add" :icon="Plus" color="#4C34FF" type="primary" @click="handleAdd"> |
| | | 新增 |
| | | </el-button> |
| | | <el-button |
| | | v-if="permission.orderUser_remove" |
| | | :icon="Delete" |
| | | :disabled="!selectedIds.length" |
| | | @click="handleDelete()" |
| | | > |
| | | 删除 |
| | | </el-button> |
| | | </div> |
| | | <!-- <div class="gd-table-toolbar">--> |
| | | <!-- <el-button v-if="permission.orderUser_add" :icon="Plus" color="#4C34FF" type="primary" @click="handleAdd">--> |
| | | <!-- 新增--> |
| | | <!-- </el-button>--> |
| | | <!-- <el-button--> |
| | | <!-- v-if="permission.orderUser_remove"--> |
| | | <!-- :icon="Delete"--> |
| | | <!-- :disabled="!selectedIds.length"--> |
| | | <!-- @click="handleDelete()"--> |
| | | <!-- >--> |
| | | <!-- 删除--> |
| | | <!-- </el-button>--> |
| | | <!-- </div>--> |
| | | |
| | | <div class="gd-table-container" v-loading="loading"> |
| | | <div class="gd-table-content gd-table-content-bg"> |
| | |
| | | <template v-slot="{ row }"> |
| | | <el-link @click="handleView(row)">查看</el-link> |
| | | <el-link v-if="permission.orderUser_edit" @click="handleEdit(row)">编辑</el-link> |
| | | <el-link v-if="permission.orderUser_remove" type="danger" @click="handleDelete(row)">删除</el-link> |
| | | <!-- <el-link v-if="permission.orderUser_remove" type="danger" @click="handleDelete(row)">删除</el-link>--> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |