护理站商品 权限 接口

This commit is contained in:
shidongli 2022-11-14 13:44:07 +08:00
parent fc0deb6467
commit b2e4d13834
2 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@ import request from '@/utils/request'
// 查询商品基本信息列表 // 查询商品基本信息列表
export function listGoodsInfo(query) { export function listGoodsInfo(query) {
return request({ return request({
url: '/system/goodsInfo/list', url: '/system/goodsCategory/getStationCategoryList',
method: 'get', method: 'get',
params: query params: query
}) })

View File

@ -86,7 +86,7 @@
icon="el-icon-plus" icon="el-icon-plus"
size="mini" size="mini"
@click="handleAdd" @click="handleAdd"
v-hasPermi="['system:operateGoodInfo:add']" v-hasPermi="['system:goodsInfo:add']"
>新增</el-button >新增</el-button
> >
</el-col> </el-col>
@ -98,7 +98,7 @@
size="mini" size="mini"
:disabled="single" :disabled="single"
@click="handleUpdate" @click="handleUpdate"
v-hasPermi="['system:operateGoodInfo:edit']" v-hasPermi="['system:goodsInfo:edit']"
>修改</el-button >修改</el-button
> >
</el-col> </el-col>
@ -174,7 +174,7 @@
type="text" type="text"
icon="el-icon-edit" icon="el-icon-edit"
@click="handleUpdate(scope.row)" @click="handleUpdate(scope.row)"
v-hasPermi="['system:operateGoodInfo:edit']" v-hasPermi="['system:goodsInfo:edit']"
>修改</el-button >修改</el-button
> >
<el-button <el-button
@ -182,7 +182,7 @@
type="text" type="text"
icon="el-icon-delete" icon="el-icon-delete"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
v-hasPermi="['system:operateGoodInfo:remove']" v-hasPermi="['system:goodsInfo:remove']"
>删除</el-button >删除</el-button
> >
</template> </template>