|
|
@@ -25,17 +25,7 @@
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-inTurn="{scope}">
|
|
|
- <span v-if="!sort.status">{{ scope.row.inTurn }}</span>
|
|
|
- <el-input
|
|
|
- ref="sort-input"
|
|
|
- focus
|
|
|
- size="mini"
|
|
|
- v-else
|
|
|
- v-model="scope.row.inTurn"
|
|
|
- @blur="changeSort(scope.row)"
|
|
|
- @focus.stop.native="iptFocus"
|
|
|
- @click.stop.native="fn"
|
|
|
- ></el-input>
|
|
|
+ {{ scope.row.inTurn }}
|
|
|
</template>
|
|
|
|
|
|
<template #table-column-cover="{scope}">
|
|
|
@@ -43,21 +33,7 @@
|
|
|
</template>
|
|
|
|
|
|
<template #table-header-inTurn>
|
|
|
- <div class="set-sort">
|
|
|
- <span>排序</span>
|
|
|
- <el-button
|
|
|
- v-if="!sort.status"
|
|
|
- icon="el-icon-edit-outline"
|
|
|
- size="small"
|
|
|
- type="text"
|
|
|
- @click="showSort"
|
|
|
- class="show"
|
|
|
- ></el-button>
|
|
|
-
|
|
|
- <el-button class="hide" v-else size="mini" @click="hideSort" type="primary"
|
|
|
- >完成</el-button
|
|
|
- >
|
|
|
- </div>
|
|
|
+ <span>排序</span>
|
|
|
</template>
|
|
|
|
|
|
<template #slot-add-goods-btn>
|