| | |
| | | {{ row.plTypeType === 'business' ? '业务类型' : '链接类型' }} |
| | | </el-tag> |
| | | </template> |
| | | <template slot="plImage" slot-scope="{row}"> |
| | | <span class="avue-icon"> |
| | | <icon-show :name="row.plImage"></icon-show> |
| | | </span> |
| | | </template> |
| | | </avue-crud> |
| | | </div> |
| | | </basic-container> |
| | |
| | | search: true |
| | | }, |
| | | { |
| | | label: 'C/S类路径', |
| | | prop: 'plCSClass', |
| | | label: '图标', |
| | | prop: 'plImage', |
| | | search: true, |
| | | searchLabelWidth:120, |
| | | overHidden: true, |
| | |
| | | @refresh-change="handleRefresh" |
| | | @selection-change="selectChangeHandler" |
| | | @row-click="rowClickHandler"> |
| | | <template slot="plCSClass" slot-scope="{row}"> |
| | | <template slot="plImage" slot-scope="{row}"> |
| | | <span class="avue-icon"> |
| | | <icon-show :name="row.plCSClass"></icon-show> |
| | | <icon-show :name="row.plImage"></icon-show> |
| | | </span> |
| | | </template> |
| | | <template slot-scope="{type,disabled}" slot="plImageForm"> |
| | |
| | | actionSaveHandler(val) { |
| | | this.$set(this.basicForm, 'actionName', val.plName); |
| | | this.$set(this.basicForm, 'actionOId', val.plOId); |
| | | this.$set(this.basicForm, 'iconPath', val.plCSClass);//图标 |
| | | this.$set(this.basicForm, 'iconPath', val.plImage);//图标 |
| | | this.$refs.form.clearValidate('Action') |
| | | }, |
| | | // action选择弹窗直接关闭 |