From cc68c8e5f5b6dc17ce03b74ffb8933efe632c54d Mon Sep 17 00:00:00 2001
From: mg <maokecheng@163.com>
Date: 星期四, 03 十一月 2022 11:05:22 +0800
Subject: [PATCH] 页面导航和点位管理
---
src/views/systemSetting/device/handheldTerminal/index.vue | 115 ++++++++++++++++++++++++++++++++++++++++++++++++---------
1 files changed, 96 insertions(+), 19 deletions(-)
diff --git a/src/views/systemSetting/device/handheldTerminal/index.vue b/src/views/systemSetting/device/handheldTerminal/index.vue
index c7ba97f..e130306 100644
--- a/src/views/systemSetting/device/handheldTerminal/index.vue
+++ b/src/views/systemSetting/device/handheldTerminal/index.vue
@@ -4,7 +4,11 @@
<div class="header-content">
<div class="search">
<span style="padding-right: 20px">绛涢�夋潯浠�:</span>
- <el-select v-model="context" placeholder="绛涢�夋潯浠�">
+ <el-select
+ v-model="context"
+ placeholder="绛涢�夋潯浠�"
+ @change="handleStateChange"
+ >
<el-option
v-for="item in options"
:key="item.value"
@@ -36,6 +40,7 @@
'font-weight': '650',
'line-height': '45px',
}"
+ :row-class-name="tableRowClassName"
:data="list"
style="width: 100%"
>
@@ -72,23 +77,42 @@
</el-table-column>
</el-table>
</div>
+
+ <!-- tools -->
+ <div class="tools">
+ <div class="funs"></div>
+ <div class="pagination">
+ <el-pagination
+ background
+ :current-page="currentPage"
+ layout="prev, pager, next"
+ :total="totalNum"
+ :page-size="pageSize"
+ @current-change="changeCurrentPage"
+ @prev-click="handlePrev"
+ @next-click="handleNext"
+ >
+ </el-pagination>
+ </div>
+ </div>
</main>
<footer>
<!-- 娣诲姞闊虫煴 -->
<el-dialog
title="娣诲姞闊虫煴"
:visible.sync="dialogCreate"
+ v-if="dialogCreate"
width="60%"
:before-close="handleClose"
>
- <MyForm :info="loudspeakerInfo" :closeDialog="null"></MyForm>
+ <MyForm :info="handheldTerminal" :closeDialog="setTableData"></MyForm>
</el-dialog>
</footer>
</div>
</template>
<script>
import { createNamespacedHelpers } from "vuex";
-const { mapActions } = createNamespacedHelpers("loudspeaker");
+const { mapActions } = createNamespacedHelpers("handheldTerminal");
import MyForm from "./components/dialogForm.vue";
export default {
@@ -98,7 +122,7 @@
data() {
return {
dialogCreate: false,
- context: 0,
+ context: null,
options: [
{
value: null,
@@ -114,15 +138,17 @@
},
],
list: [],
- current: 1,
- size: 10,
- loudspeakerInfo: {
+ totalNum: 0,
+ pageSize: 10,
+ currentPage: 1,
+ renderFlag: false,
+ handheldTerminal: {
id: 0,
name: "",
code: "",
- power: "",
- frequencyResponse: "",
- fullRangeSpeaker: "",
+ user: "",
+ phone: "",
+ departId: 0,
},
};
},
@@ -131,12 +157,28 @@
},
methods: {
...mapActions([
- "getLoudspeakerList",
- "saveLoudspeaker",
- "updateLoudspeaker",
+ "getHandheldTerminalList",
+ "saveHandheldTerminal",
+ "updateHandheldTerminal",
]),
+ handleEdit(row) {
+
+ this.handheldTerminal = row;
+ this.dialogCreate = true;
+ },
+ handleDelete(row) {},
formatSate(row, column) {
return row.state == 1 ? "鍦ㄧ嚎" : "绂荤嚎";
+ },
+
+ // 璁剧疆琛ㄦ牸鏂戦┈绾�
+ tableRowClassName({ row, rowIndex }) {
+ if ((rowIndex + 1) % 2 == 0) {
+ return "warning-row";
+ } else {
+ return "success-row";
+ }
+ return "";
},
// 寮圭獥鍏抽棴
handleClose(done) {
@@ -146,13 +188,35 @@
},
// 璁剧疆tableData
setTableData() {
- const { current, size, context } = this;
- let arr = this.getLoudspeakerList({
- current,
- size,
+ const { currentPage, pageSize, context } = this;
+ this.getHandheldTerminalList({
+ currentPage,
+ pageSize,
+ state: context,
}).then((res) => {
- this.list = arr.data.data;
+ if (res.data.code == 200) {
+ this.list = res.data.data.records;
+ this.totalNum = res.data.data.total;
+ }
});
+ },
+ handleStateChange(e) {
+ this.setTableData();
+ },
+ // 褰撳墠椤垫敼鍙樿Е鍙戜簨浠�
+ changeCurrentPage(page) {
+ this.currentPage = page;
+ this.setTableData();
+ },
+ // 涓婁竴椤电偣鍑讳簨浠�
+ handlePrev(page) {
+ this.currentPage = page;
+ this.setTableData();
+ },
+ // 涓嬩竴椤电偣鍑讳簨浠�
+ handleNext(page) {
+ this.currentPage = page;
+ this.setTableData();
},
},
};
@@ -269,11 +333,24 @@
}
}
}
+ &::v-deep .warning-row {
+ background-color: #06122c;
+ }
+ &::v-deep .success-row {
+ background-color: #071f39;
+ }
+
+ .operationBox {
+ display: flex;
+ }
+
+ .el-divider {
+ background-color: #4b9bb7;
+ }
.el-table {
color: #4b9bb7;
font-size: 10px;
-
.operation {
display: flex;
--
Gitblit v1.8.0