From 6cfaee4a1edbe47f7c9da41905e8d877ed590dc4 Mon Sep 17 00:00:00 2001 From: liukangdong <898885815@qq.com> Date: 星期三, 22 五月 2024 16:09:13 +0800 Subject: [PATCH] '' --- admin/src/views/platform/LogisticsRecord/subscribe.vue | 160 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 160 insertions(+), 0 deletions(-) diff --git a/admin/src/views/platform/LogisticsRecord/subscribe.vue b/admin/src/views/platform/LogisticsRecord/subscribe.vue index e69de29..92cba1b 100644 --- a/admin/src/views/platform/LogisticsRecord/subscribe.vue +++ b/admin/src/views/platform/LogisticsRecord/subscribe.vue @@ -0,0 +1,160 @@ +<template> + <div class="main_app"> + <QueryForm + v-model="filters" + :query-form-config="queryFormConfig" + @handleQuery="getList(1)" + @clear="clear" + /> + <el-table v-loading="loading" :data="list" stripe> + <el-table-column + prop="name" + label="杞︾墝鍓嶇収鍙�" + min-width="100" + show-overflow-tooltip + /> + <el-table-column + prop="name" + label="杞︾墝鍚庣収鍙�" + min-width="100" + show-overflow-tooltip + /> + <el-table-column + prop="name" + label="椹鹃┒鍛�" + min-width="100" + show-overflow-tooltip + /> + <el-table-column + prop="name" + label="鑱旂郴鏂瑰紡" + min-width="100" + show-overflow-tooltip + /> + <el-table-column + prop="name" + label="鍚堝悓鍗曞彿" + min-width="100" + show-overflow-tooltip + /> + <el-table-column + prop="name" + label="鍏ュ簱绫诲瀷" + min-width="100" + show-overflow-tooltip + /> + <el-table-column + prop="name" + label="棰勭害鍒板満鏃堕棿" + min-width="100" + show-overflow-tooltip + /> + <el-table-column + prop="name" + label="瀹℃壒缁撴灉" + min-width="100" + show-overflow-tooltip + /> + <el-table-column + prop="name" + label="瀹℃壒浜�" + min-width="100" + show-overflow-tooltip + /> + <el-table-column + prop="name" + label="鎿嶄綔鏃堕棿" + min-width="100" + show-overflow-tooltip + /> + <el-table-column + prop="name" + label="鎿嶄綔" + min-width="80" + align="center" + show-overflow-tooltip + > + <template v-slot="scope"> + <el-button type="text" @click="handleEdit(scope.row)">棰勭害璇︽儏</el-button> + </template> + </el-table-column> + </el-table> + <pagination + @size-change="handleSizeChange" + @current-change="getList" + :pagination="pagination" + /> + </div> +</template> + +<script> +import Pagination from '@/components/common/Pagination' +import QueryForm from '@/components/common/QueryForm' +export default { + components: { + Pagination, + QueryForm + }, + data () { + return { + loading: false, + pagination: { + capacity: 10, + page: 1 + }, + filters: {}, + list: [], + total: 0, + isShowEdit: false, + param: {}, + rules: {}, + queryFormConfig: { + formItems: [ + { + filed: 'aaaa', + type: 'input', + label: '杞︾墝鍙�' + }, + { + filed: 'bbb', + type: 'input', + label: '椹鹃┒鍛�' + }, + { + filed: 'cc', + type: 'input', + label: '鍚堝悓鍗曞彿' + }, + { + filed: 'selDate', + type: 'daterange', + label: '鎿嶄綔鏃堕棿' + } + ], + online: true + }, + } + }, + methods: { + handleSub () { + this.$refs.ruleForm.validate((valid) => { + if (valid) { + alert('submit!') + } + }) + }, + getList (page) { }, + clear () { }, + handleEdit (row) { + this.isShowEdit = true + }, + handleDel () { }, + handleSizeChange (capacity) { + this.pagination.capacity = capacity + } + } +} +</script> + +<style> +</style> -- Gitblit v1.9.3