提交代码
parent
22d552c5f0
commit
81bbfcf91b
|
@ -136,13 +136,15 @@
|
||||||
prop="sortNum"
|
prop="sortNum"
|
||||||
v-if="checkPermi(['work:workJournalism:edit'])"
|
v-if="checkPermi(['work:workJournalism:edit'])"
|
||||||
>
|
>
|
||||||
<el-input-number
|
<template slot-scope="scope">
|
||||||
size="mini"
|
<el-input-number
|
||||||
v-model="scope.row.sortNum"
|
size="mini"
|
||||||
:min="1"
|
v-model="scope.row.sortNum"
|
||||||
:max="999"
|
:min="1"
|
||||||
@change="setSort(scope.row, $event)"
|
:max="999"
|
||||||
></el-input-number>
|
@change="setSort(scope.row, $event)"
|
||||||
|
></el-input-number>
|
||||||
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="数据状态" align="center" prop="isDel">
|
<el-table-column label="数据状态" align="center" prop="isDel">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
|
@ -341,6 +343,7 @@ export default {
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
checkPermi,
|
||||||
/** 查询集团新闻列表 */
|
/** 查询集团新闻列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
|
|
Loading…
Reference in New Issue