operationModel.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <template>
  2. <view class="container">
  3. <!-- 建议放在外层 -->
  4. <u-navbar
  5. title="操作记录"
  6. @leftClick="devicemenuShow"
  7. :safeAreaInsetTop="false"
  8. style="margin-top: 30px"
  9. >
  10. <view class="u-nav-slot" slot="left">
  11. <u-icon name="list" size="20"> </u-icon>
  12. </view>
  13. </u-navbar>
  14. <view v-show="menushow" class="menupage">
  15. <DeviceMenu @menuClick="menuClick"></DeviceMenu>
  16. </view>
  17. <view v-show="!menushow" class="main">
  18. <view class="u-page">
  19. <div class="flcard">
  20. <div class="btns">
  21. <u-button
  22. type="primary"
  23. shape="circle"
  24. :text="StartTime ? StartTime : '起始时间'"
  25. @click="dataShow = true"
  26. ></u-button>
  27. <u-button
  28. type="primary"
  29. shape="circle"
  30. :text="EndTime ? EndTime : '结束时间'"
  31. @click="dataShow1 = true"
  32. ></u-button>
  33. <u-icon
  34. size="30"
  35. color="#3c9cff"
  36. name="search"
  37. @click="checkHistoryData"
  38. ></u-icon>
  39. </div>
  40. <u-datetime-picker
  41. :show="dataShow"
  42. mode="datetime"
  43. @cancel="dataShow = false"
  44. @confirm="selectStartTime"
  45. v-model="dataTime"
  46. ></u-datetime-picker>
  47. <u-datetime-picker
  48. :show="dataShow1"
  49. mode="datetime"
  50. @cancel="dataShow1 = false"
  51. @confirm="selectEndTime"
  52. v-model="dataTime"
  53. ></u-datetime-picker>
  54. </div>
  55. <u-list>
  56. <u-list-item
  57. class="itemback"
  58. v-for="(item, index) in historyData"
  59. :key="index"
  60. >
  61. <view class="datacard">
  62. <view class="content flcard">
  63. <view
  64. class="demo-layout bg-purple-light"
  65. style="margin-top: 10rpx; color: #3787fe"
  66. >用户:{{ item.realname }}</view
  67. >
  68. <view
  69. class="demo-layout bg-purple-light"
  70. style="margin-top: 10rpx; color: #3787fe"
  71. >操作设备:{{ item.devicename }}</view
  72. >
  73. <view
  74. class="demo-layout bg-purple-light"
  75. style="margin-top: 10rpx; color: #3787fe"
  76. >操作记录:{{ item.strremark }}</view
  77. >
  78. <view
  79. class="demo-layout bg-purple-light"
  80. style="margin-top: 10rpx; color: #3787fe"
  81. >操作时间:{{ item.createTime }}</view
  82. >
  83. </view>
  84. </view>
  85. </u-list-item>
  86. </u-list>
  87. </view>
  88. </view>
  89. </view>
  90. </template>
  91. <script>
  92. import DeviceMenu from "./devicemenu/devicemenu.vue";
  93. import api from "@/api/api";
  94. import dayjs from "dayjs";
  95. export default {
  96. data() {
  97. return {
  98. menushow: false,
  99. TabCur: "gate",
  100. dataShow: false,
  101. dataShow1: false,
  102. dataTime: dayjs().toDate(),
  103. deviceType: "", //设备类型
  104. StartTime: "",
  105. EndTime: "",
  106. historyData: [],
  107. };
  108. },
  109. components: {
  110. DeviceMenu,
  111. },
  112. props: ["showColum"],
  113. watch: {
  114. showColum(data) {
  115. this.colums = data;
  116. console.log(this.colums);
  117. },
  118. },
  119. created() {
  120. this.colums = this.showColum;
  121. },
  122. mounted() {},
  123. methods: {
  124. //选择起始时间
  125. selectStartTime(e) {
  126. const startTime = e.value;
  127. const formattedTime = dayjs(startTime).format("YYYY-MM-DD HH:mm:ss");
  128. this.StartTime = formattedTime;
  129. this.dataShow = false;
  130. },
  131. //选择起始时间
  132. selectEndTime(e) {
  133. const endTime = e.value;
  134. const formattedTime = dayjs(endTime).format("YYYY-MM-DD HH:mm:ss");
  135. this.EndTime = formattedTime;
  136. this.dataShow1 = false;
  137. },
  138. devicemenuShow(e) {
  139. this.menushow = true;
  140. },
  141. menuClick(id) {
  142. this.TabCur = id;
  143. this.deviceType = this.TabCur;
  144. this.menushow = false;
  145. },
  146. //查询历史数据
  147. checkHistoryData() {
  148. const params = {
  149. createTime_begin: this.StartTime,
  150. createTime_end: this.EndTime,
  151. pageNo: 1,
  152. pageSize: 10000,
  153. devicetype: this.deviceType + "*",
  154. };
  155. new Promise((resolve, reject) => {
  156. api
  157. .getOpreateHistory(params)
  158. .then((response) => {
  159. if (response.data.code == 200) {
  160. this.historyData = response.data.result.records;
  161. } else {
  162. resolve(response);
  163. }
  164. })
  165. .catch((error) => {
  166. reject(error);
  167. });
  168. });
  169. },
  170. },
  171. destroyed() {},
  172. };
  173. </script>
  174. <style>
  175. >>> .u-navbar--fixed {
  176. margin-top: 20px;
  177. }
  178. .main {
  179. margin-top: 100rpx;
  180. display: flex;
  181. flex-direction: column;
  182. }
  183. .menupage {
  184. position: absolute;
  185. z-index: 2;
  186. top: 40rpx;
  187. height: calc(100% - 40rpx);
  188. width: 100%;
  189. }
  190. .btns {
  191. display: flex;
  192. }
  193. .flcard {
  194. padding: 20rpx;
  195. background-color: #ffffff;
  196. margin-bottom: 5rpx;
  197. }
  198. </style>