system-clients 3.2.81-yangchun → 3.2.82-yangchun

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "system-clients",
3
- "version": "3.2.81-yangchun",
3
+ "version": "3.2.82-yangchun",
4
4
  "description": "系统基础框架",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -50,7 +50,7 @@
50
50
 
51
51
  <p v-if="selectItem" class="bg-info text-center" style="padding: 8px;margin: 8px 0px;">
52
52
  {{selectItem.name}}
53
- <button type="button" name="button" class="button_search button_spacing width-60" @click="add('t_paramvalue')" style="float:right">新增</button>
53
+ <button type="button" name="button" class="button_search button_spacing width-60" @click="add('t_paramvalue')" style="float:right" v-if="this.$login.r.includes('参数管理二级新增')>新增</button>
54
54
  </p>
55
55
  <div v-if="selectItem" class="span">
56
56
  <data-grid :model="params" v-ref:selects >
@@ -65,9 +65,9 @@
65
65
  <td style="text-align:center">{{$index+1}}</td>
66
66
  <td style="text-align:center">{{row.name}}</td>
67
67
  <td class="flex-around col-sm-3">
68
- <button type="button" name="button" class="button_search" @click.stop="$parent.$parent.modifyParam(row, 't_paramvalue')">修改</button>
69
- <button type="button" name="button" class="button_search" v-if="$index!=0" @click.stop="$parent.$parent.move(row,$index)">上移</button>
70
- <button type="button" name="button" class="btn btn-danger" @click.stop="$parent.$parent.deleteParam(row, 't_paramvalue')">删除</button>
68
+ <button type="button" name="button" class="button_search" v-if="this.$login.r.includes('参数管理二级修改') @click.stop="$parent.$parent.modifyParam(row, 't_paramvalue')">修改</button>
69
+ <button type="button" name="button" class="button_search" v-if="$index != 0 && $login.r.includes('参数管理二级排序')" @click.stop="$parent.$parent.move(row,$index)">上移</button>
70
+ <button type="button" name="button" class="btn btn-danger" v-if="this.$login.r.includes('参数管理二级删除') @click.stop="$parent.$parent.deleteParam(row, 't_paramvalue')">删除</button>
71
71
  </td>
72
72
  </template>
73
73
  </data-grid>