Browse Source

【接口看板+job+sore+Inventory】反查主表按钮优化

master
安虹睿 1 year ago
parent
commit
1f6c4c9ae4
  1. 4
      PC/InterFace.Dash/src/components/filterForDetailPage/index.vue
  2. 4
      PC/UI.WinIn.FasterZ.Inventory/src/components/filterForDetailPage/index.vue
  3. 4
      PC/UI.WinIn.FasterZ.Job/src/components/filterForDetailPage/index.vue
  4. 4
      PC/UI.WinIn.FasterZ.Store/src/components/filterForDetailPage/index.vue

4
PC/InterFace.Dash/src/components/filterForDetailPage/index.vue

@ -56,9 +56,9 @@
>
<template slot-scope="scope">
<span v-for="item in operaButtons" style="margin: 0 10px;">
<!-- 查看主表信息 -->
<!-- 查看主表信息 如果配置中masterId的值为空则不显示-->
<el-button
v-if="item == 'showParent'"
v-if="item == 'showParent' && (scope.row[URLOption_masterId])"
type="text"
@click="showParentHandleForDetail(scope.row)"
>查看主表信息</el-button>

4
PC/UI.WinIn.FasterZ.Inventory/src/components/filterForDetailPage/index.vue

@ -56,9 +56,9 @@
>
<template slot-scope="scope">
<span v-for="item in operaButtons" style="margin: 0 10px;">
<!-- 查看主表信息 -->
<!-- 查看主表信息 如果配置中masterId的值为空则不显示-->
<el-button
v-if="item == 'showParent'"
v-if="item == 'showParent' && (scope.row[URLOption_masterId])"
type="text"
@click="showParentHandleForDetail(scope.row)"
>查看主表信息</el-button>

4
PC/UI.WinIn.FasterZ.Job/src/components/filterForDetailPage/index.vue

@ -56,9 +56,9 @@
>
<template slot-scope="scope">
<span v-for="item in operaButtons" style="margin: 0 10px;">
<!-- 查看主表信息 -->
<!-- 查看主表信息 如果配置中masterId的值为空则不显示-->
<el-button
v-if="item == 'showParent'"
v-if="item == 'showParent' && (scope.row[URLOption_masterId])"
type="text"
@click="showParentHandleForDetail(scope.row)"
>查看主表信息</el-button>

4
PC/UI.WinIn.FasterZ.Store/src/components/filterForDetailPage/index.vue

@ -56,9 +56,9 @@
>
<template slot-scope="scope">
<span v-for="item in operaButtons" style="margin: 0 10px;">
<!-- 查看主表信息 -->
<!-- 查看主表信息 如果配置中masterId的值为空则不显示-->
<el-button
v-if="item == 'showParent'"
v-if="item == 'showParent' && (scope.row[URLOption_masterId])"
type="text"
@click="showParentHandleForDetail(scope.row)"
>查看主表信息</el-button>

Loading…
Cancel
Save