新增申购 调整产品录入分页多选

pro
wangwei 2 years ago
parent 0039e3e2b5
commit 10ffb1988f

@ -150,6 +150,7 @@
:data="thisData"
:pId="pId"
:purType="1"
:codeArray="codeArray"
></purApplyProducts>
</el-dialog>

@ -75,14 +75,14 @@
<el-divider style="margin: 15px"></el-divider>
<el-table :data="dataList" style="width: 100%" v-loading="loading" border highlight-current-row
:row-class-name="tableRowClassName" @current-change="handleChange"
:row-class-name="tableRowClassName" @current-change="handleChange" :row-key="row=>row.id"
@selection-change="handleSelectionChange" ref="multipleTable">
<!--<el-table-column label width="45">-->
<!-- <template slot-scope="scope">-->
<!-- <el-radio :label="scope.row.id" v-model="radioCheck"><span></span></el-radio>-->
<!-- </template>-->
<!--</el-table-column>-->
<el-table-column type="selection"></el-table-column>
<el-table-column type="selection" :reserve-selection="true"></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="最小销售产品标识" prop="nameCode" width="140" show-overflow-tooltip></el-table-column>
<el-table-column label="第三方物资编码" prop="thirdId" show-overflow-tooltip></el-table-column>
@ -164,6 +164,10 @@ export default {
type: Object,
required: true,
},
codeArray: {
type: Object,
required: true,
},
},
data() {

Loading…
Cancel
Save