| | |
| | | <!-- 表格和分页 --> |
| | | <template v-slot:table-wrap> |
| | | <ul class="toolbar" v-permissions="['business:category:create', 'business:category:delete']"> |
| | | <li><el-button type="primary" @click="$refs.operaCategoryWindow.open('新建品种配置',null,searchForm.type)" icon="el-icon-plus" v-permissions="['business:category:create']">新建</el-button></li> |
| | | <li><el-button type="primary" @click="$refs.operaCategoryWindow.open('新建货运配置',null,searchForm.type)" icon="el-icon-plus" v-permissions="['business:category:create']">新建</el-button></li> |
| | | <li><el-button @click="deleteByIdInBatch" icon="el-icon-delete" v-permissions="['business:category:delete']">删除</el-button></li> |
| | | </ul> |
| | | <el-table |
| | |
| | | @selection-change="handleSelectionChange" |
| | | > |
| | | <el-table-column type="selection" :selectable="isChangeSelected" width="55"></el-table-column> |
| | | <el-table-column prop="icon" label="图标" min-width="100px"> |
| | | <template slot-scope="{row}"> |
| | | <el-image v-if="row.iconFull" style="width: 50px; height: 50px; margin-right: 10px" :src="row.iconFull" |
| | | :preview-src-list="[row.iconFull]"> |
| | | </el-image> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="name" label="单位名称" min-width="100px"></el-table-column> |
| | | <el-table-column prop="isFixed" label="是否固定车辆" min-width="100px"> |
| | | <template slot-scope="{row}"> |
| | |
| | | <span v-else >否</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="detail" label="可选规格" min-width="100px"> |
| | | <el-table-column prop="detail" label="可选规格" min-width="200px"> |
| | | <template slot-scope="{row}"> |
| | | <div v-if="row.detailList && row.detailList.length"> |
| | | <div v-for="item in row.detailList"> |
| | | <span v-for="(item,index) in row.detailList"> |
| | | {{item || ''}} |
| | | <span v-if="item.index < row.detailList.length" style="margin: 10px">|</span> |
| | | </div> |
| | | <span v-if="index < row.detailList.length-1" style="margin: 5px">|</span> |
| | | </span> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | fixed="right" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <el-button type="text" v-if="row.isFixed != 1" @click="$refs.operaCategoryWindow.open('编辑新建品种配置', row,searchForm.type)" icon="el-icon-edit" v-permissions="['business:category:update']">编辑</el-button> |
| | | <el-button type="text" v-if="row.isFixed != 1" @click="deleteById(row)" icon="el-icon-delete" v-permissions="['business:category:delete']">删除</el-button> |
| | | <el-button type="text" @click="$refs.operaCategoryWindow.open('编辑新建货运配置', row,searchForm.type)" icon="el-icon-edit" v-permissions="['business:category:update']">编辑</el-button> |
| | | <el-button type="text" @click="deleteById(row)" icon="el-icon-delete" v-permissions="['business:category:delete']">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | }, |
| | | methods: { |
| | | isChangeSelected(row,index){ |
| | | if(row.isFixed ==1) { |
| | | return false |
| | | } |
| | | // if(row.isFixed ==1) { |
| | | // return false |
| | | // } |
| | | return true |
| | | }, |
| | | changeStatus (e, row) { |