Forráskód Böngészése

smart tools template

Bella 2 éve
szülő
commit
315e1adb82

A különbségek nem kerülnek megjelenítésre, a fájl túl nagy
+ 9922 - 1
package-lock.json


+ 44 - 0
src/components/popup/FrequencyDialog.vue

@@ -0,0 +1,44 @@
+<template>
+  <el-dialog :visible.sync="dialogVisible">
+    <template slot="title">
+      <div class="dialogTitle">
+        <div class="dialogTitleIcon"></div>
+        频发问题
+      </div>
+    </template>
+  </el-dialog>
+</template>
+<script>
+import NewSelect from "@/components/common/NewSelect.vue";
+/**
+ * 频发问题 dialog -- 智能辅助
+ * @author: Gao Lu
+ * @Date: 2022.11.24
+ */
+export default {
+  name: "FrequencyDialog",
+  components: { NewSelect },
+  data() {
+    return {
+      dialogVisible: true,
+      typeSelectVal: "",
+      typeOptions: [],
+      streetSelectVal: "",
+      streetOptions: [],
+      timeSelectVal: "",
+      timeOptions: [],
+      paginationData: {},
+      tableData: [],
+    };
+  },
+  methods: {
+    queryEvent() {
+      console.log("查询");
+    },
+    resetEvent() {
+      console.log("重置");
+    },
+  },
+};
+</script>
+<style lang="less" scoped></style>

+ 45 - 0
src/components/popup/LawDialog.vue

@@ -0,0 +1,45 @@
+<template>
+  <el-dialog :visible.sync="dialogVisible">
+    <template slot="title">
+      <div class="dialogTitle">
+        <div class="dialogTitleIcon"></div>
+        法律法规
+      </div>
+    </template>
+  </el-dialog>
+</template>
+<script>
+import NewSelect from "@/components/common/NewSelect.vue";
+/**
+ * 法律法规 dialog -- 智能辅助,疑点相关的法律法规
+ * @author: Gao Lu
+ * @Date: 2022.11.24
+ */
+export default {
+  name: "LawDialog",
+  components: { NewSelect },
+  data() {
+    return {
+      dialogVisible: true,
+      searchInput: "",
+      sortSelectVal: "",
+      sortOptions: [],
+      searchSelectVal: "",
+      searchOptions: [],
+      timeSelectVal: "",
+      timeOptions: [],
+      paginationData: {},
+      tableData: [],
+    };
+  },
+  methods: {
+    queryEvent() {
+      console.log("查询");
+    },
+    resetEvent() {
+      console.log("重置");
+    },
+  },
+};
+</script>
+<style lang="less" scoped></style>

Nem az összes módosított fájl került megjelenítésre, mert túl sok fájl változott