| | |
| | | </el-form-item> |
| | | </el-form> |
| | | <el-table v-loading="table.dataLoading" :data="table.dataList" height="100px" v-adaptive="{bottomOffset:70}" border @selection-change="table.selectionChangeHandle"> |
| | | <el-table-column type="selection" width="40"/> |
| | | <el-table-column :selectable="isCheckbox" align="center" type="selection" width="40"/> |
| | | <el-table-column prop="code" label="物品流转单编号"/> |
| | | <el-table-column prop="softwareName" label="物品名称"/> |
| | | <el-table-column prop="softwareIdentity" label="物品编号"/> |
| | |
| | | dataLoaded(data){ |
| | | console.log(data,'data daraList') |
| | | }, |
| | | isCheckbox(row,index){ |
| | | return !(row.flowInfo && row.flowInfo.bizId); |
| | | }, |
| | | add() { |
| | | this.$refs.projectSelect.$refs.dialog.init("item_circulat_order") |
| | | }, |