Blame view

src/views/system/gxhpz/gxhpz.vue 1.05 KB
1 2 3 4 5
<!--
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-07-19 14:09:11
-->
6
<template>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
  <div class="from-clues">
    <!-- 表单部分 -->
    <div class="from-clues-header">
      <el-form :model="ruleForm" label-width="80px">
        <el-row>
          <el-col :span="5">
            <el-form-item label="个性化配置">
              <el-input></el-input>
            </el-form-item>
          </el-col>
          <el-col :span="19" class="btnColRight">
            <el-form-item>
              <el-button type="primary" native-type="submit">查询</el-button>
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
24
    </div>
25 26 27
    <!-- 表格 -->
  </div>
</template>
28 29 30 31
  <script>
  import table from "@/utils/mixin/table";
  export default {
    name: "gxhpz",
32
    components: {},
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
    mixins: [table],
    mounted () {
    },
    data () {
      return {
        isDialog: false,
        isDiglog: false
      }
    },
    methods: {
    },
  };
  </script>
  <style scoped lang="scss">
  @import "~@/styles/public.scss";
48
</style>
49