|
@@ -13,11 +13,6 @@
|
|
|
<el-button @click="resetForm()">重置</el-button>
|
|
|
</el-form-item>
|
|
|
</div>
|
|
|
- <el-row>
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary" @click="transferHandle()">回调</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-row>
|
|
|
</el-form>
|
|
|
|
|
|
<el-table
|
|
@@ -58,13 +53,13 @@
|
|
|
{{ scope.row.into }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- </el-table>
|
|
|
|
|
|
- <el-table-column align="center" label="操作" width="180">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-button @click="transferHandle(scope.row)" type="text">回调</el-button>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
+ <el-table-column align="center" label="操作" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button @click="transferHandle(scope.row)" type="text">回调</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
|
|
|
<el-pagination style="float: right; margin-top: 30px;" :current-page="listQuery.index" :page-sizes="[10, 20, 50, 100]" :page-size="listQuery.length" :total="total"
|
|
|
layout="total, sizes, prev, pager, next, jumper" @size-change="pageSizeChangeHandle"
|
|
@@ -115,6 +110,19 @@ export default {
|
|
|
this.$store.dispatch('tagsView/delView', this.$route)
|
|
|
this.$router.go(-1)
|
|
|
},
|
|
|
+ //重置
|
|
|
+ resetForm() {
|
|
|
+ this.listQuery = {
|
|
|
+ index: 1,
|
|
|
+ length: 20,
|
|
|
+ importance: undefined,
|
|
|
+ sn: '',
|
|
|
+ type: undefined,
|
|
|
+ sort: '',
|
|
|
+ status: [3]
|
|
|
+ }
|
|
|
+ this.getDataList()
|
|
|
+ },
|
|
|
//搜索
|
|
|
searchHandle() {
|
|
|
this.listQuery.index = 1
|
|
@@ -152,6 +160,9 @@ export default {
|
|
|
this.$nextTick(() => {
|
|
|
this.$refs.back.init()
|
|
|
this.$refs.back.dataForm.sn = [row.sn]
|
|
|
+ this.$refs.back.pack = row.packTitle
|
|
|
+ this.$refs.back.typeTitle = row.typeTitle
|
|
|
+ this.$refs.back.updateTime = row.updateTime
|
|
|
});
|
|
|
}
|
|
|
}
|