Ver Fonte

no message

GeekFish há 4 anos atrás
pai
commit
64816aff97

+ 10 - 0
src/api/baseManage/productType.js

@@ -0,0 +1,10 @@
+import request from '@/utils/request'
+
+// 查询参数列表
+export function listProductType(query) {
+  return request({
+    url: '/system/web/productType/searchByPage',
+    method: 'post',
+    params: query
+  })
+}

+ 2 - 1
src/assets/styles/element-ui.scss

@@ -30,7 +30,8 @@
 
 .fixed-width {
   .el-button--mini {
-    padding: 7px 10px;
+    padding: 7px 10px;
+    color:#fff;
     width: 60px;
   }
 }

+ 3 - 3
src/assets/styles/ruoyi.scss

@@ -106,9 +106,9 @@
 }
 
 .el-table .fixed-width .el-button--mini {
-	color: #409EFF;
-	padding-left: 0;
-	padding-right: 0;
+	// color: #409EFF;
+	// padding-left: 0;
+	// padding-right: 0;
 	width: inherit;
 }
 

+ 254 - 8
src/views/baseManage/productType/index.vue

@@ -1,14 +1,260 @@
 <template>
-  <div class="productType">
-      产品类别管理
+  <div class="app-container">
+      <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
+        <el-form-item prop="phonenumber">
+          <el-input
+            v-model="queryParams.povertyAreaName"
+            placeholder="请输入类别名称"
+            clearable
+            size="small"
+            style="width: 240px"
+            @keyup.enter.native="handleQuery"
+          />
+        </el-form-item>
+        <!-- <el-form-item prop="status">
+          <el-select
+            v-model="queryParams.status"
+            placeholder="状态"
+            clearable
+            size="small"
+            style="width: 240px"
+          >
+            <el-option
+              v-for="dict in statusOptions"
+              :key="dict.dictValue"
+              :label="dict.dictLabel"
+              :value="dict.dictValue"
+            />
+          </el-select>
+        </el-form-item> -->
+       <!-- <el-form-item>
+          <el-date-picker
+            v-model="queryParams.dateRange"
+            size="small"
+            placeholder="时间"
+            style="width: 240px"
+            value-format="yyyy-MM-dd"
+            type="date"
+          ></el-date-picker>
+        </el-form-item> -->
+        <el-form-item>
+          <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
+          <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
+        </el-form-item>
+      </el-form>
+      <el-row :gutter="10" class="mb8">
+        <el-col :span="1.5">
+          <el-button
+            type="primary"
+            icon="el-icon-plus"
+            size="mini"
+            @click="handleAdd"
+            v-hasPermi="['system:user:add']"
+          >新增方案</el-button>
+        </el-col>
+        <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+      </el-row>
+      <el-table v-loading="loading" :data="list">
+        <el-table-column label="序号" type="index" width="50" align="center" />
+        <el-table-column label="产品类别" align="center" prop="typeName" />
+        <el-table-column label="类别说明" align="center" prop="desc" :show-overflow-tooltip="true" />
+        <el-table-column label="修改时间" align="center" prop="time" width="160">
+          <template slot-scope="scope">
+            <span>{{ parseTime(scope.row.time) }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column
+          label="操作"
+          align="center"
+          width="280"
+          class-name="small-padding fixed-width"
+        >
+          <template slot-scope="scope">
+            <el-button
+              size="mini"
+              type="primary"
+              icon="el-icon-view"
+            >查看</el-button>
+            <el-button
+              size="mini"
+              type="success"
+              icon="el-icon-edit"
+            >编辑</el-button>
+            <el-button
+              size="mini"
+              type="danger"
+              icon="el-icon-delete"
+            >删除</el-button>
+          </template>
+        </el-table-column>
+      </el-table>
+      <pagination
+        v-show="total>0"
+        :total="total"
+        :page.sync="queryParams.pageNum"
+        :limit.sync="queryParams.pageSize"
+        @pagination="getList"
+      />
+
+      <add-mobiel
+      			v-if="modal.visibleModal"
+      			:title="modal.title"
+      			:action="modal.action"
+      			:visible="modal.visibleModal"
+      			:selectRow="modal.selectRow"
+      			@closeModal="closeModal">
+      		</add-mobiel>
   </div>
 </template>
-
+56757
 <script>
-  export default{
-    name:"productType"
+import { listProductType } from "@/api/baseManage/productType";
+import addMobiel from './modal/addMobiel'
+export default {
+  name: "productType",
+  components: {
+    addMobiel
+  },
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 表格数据
+      list: null,
+      // 状态数据字典
+      statusOptions: [],
+      // 表单参数
+      form: {},
+      //弹出层
+      modal:{
+        action:'',
+        title:'',
+        visibleModal:false,
+        selectRow:null
+      },
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        userName: undefined,
+        phonenumber: undefined,
+        status: undefined,
+        deptId: undefined
+      }
+    };
+  },
+  created() {
+    // this.getDicts("sys_normal_disable").then(response => {
+    //   this.statusOptions = response.data;
+    // });
+    this.getList();
+  },
+  methods: {
+    /** 查询产婆类别列表 */
+    getList() {
+      this.loading = false;
+      this.list = [
+        {
+          id:"1",
+          typeName:'test1',
+          desc:'说明说明',
+          time:'2015.10.11',
+        },
+        {
+          id:"2",
+          typeName:'test1',
+          desc:'说明说明',
+          time:'2015.10.11',
+        },
+        {
+          id:"3",
+          typeName:'test1',
+          desc:'说明说明',
+          time:'2015.10.11',
+        },
+        {
+          id:"3",
+          typeName:'test1',
+          desc:'说明说明',
+          time:'2015.10.11',
+        }
+      ]
+      // listProductType(this.queryParams).then(response => {
+      //     this.userList = response.rows;
+      //     this.total = response.total;
+      //     this.loading = false;
+      //   }
+      // );
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        userId: undefined,
+        deptId: undefined,
+        userName: undefined,
+        nickName: undefined,
+        password: undefined,
+        phonenumber: undefined,
+        email: undefined,
+        sex: undefined,
+        status: "0",
+        remark: undefined,
+        postIds: [],
+        roleIds: []
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.page = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.dateRange = [];
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+        this.modal.visibleModal = true
+        this.modal.title = '新建方案'
+        this.modal.action = 'add'
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const userIds = row.userId || this.ids;
+      this.$confirm('是否确认删除用户编号为"' + userIds + '"的数据项?', "警告", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        }).then(function() {
+          return delUser(userIds);
+        }).then(() => {
+          this.getList();
+          this.msgSuccess("删除成功");
+        }).catch(function() {});
+    },
+    //窗口关闭
+    closeModal(flag = false){
+      this.modal.visibleModal = false
+      flag && this.getList()
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('system/user/export', {
+        ...this.queryParams
+      }, `user_${new Date().getTime()}.xlsx`)
+    }
   }
+};
 </script>
-
-<style>
-</style>

+ 268 - 0
src/views/baseManage/productType/modal/addMobiel.vue

@@ -0,0 +1,268 @@
+<template>
+  <el-dialog
+    :title="modalTitle"
+    :visible.sync="modalVisible"
+    :width="formLabelWidth"
+    top="2vh"
+    @close="handleCancel">
+    <div class="mobile">
+      <div class="hc-box add">
+        <div class="hc-box-header">
+          新建核查方案
+        </div>
+        <div class="hc-box-wrap">
+            <el-form label-width="90px" :model="form" :rules="rules" ref="from" class="from">
+                <el-form-item label="方案编号:" prop="status">
+                    <el-input type="text" v-model="form.remark" :disabled="true"></el-input>
+                </el-form-item>
+                <el-form-item label="审核结果:" prop="status">
+                    <el-select
+                      v-model="form.status"
+                      placeholder="请选择"
+                      clearable
+                      :disabled="limit.isRead"
+                      size="small">
+                      <el-option
+                        v-for="dict in statusOptions"
+                        :key="dict.dictValue"
+                        :label="dict.dictLabel"
+                        :value="dict.dictValue"
+                      />
+                    </el-select>
+                </el-form-item>
+                <el-form-item label="备注:">
+                    <el-input type="textarea"
+                              :rows="3"
+                              v-model="form.remark"
+                              :disabled="limit.isRead"></el-input>
+                </el-form-item>
+            </el-form>
+        </div>
+      </div>
+      <div class="hc-box taskList">
+        <div class="hc-box-header">
+          核查任务 <span class="action">添加</span>
+        </div>
+        <div class="hc-box-wrap">
+            <el-table v-loading="loading" :data="list" border>
+              <el-table-column label="序号" type="index" width="50" align="center" />
+              <el-table-column label="方案编号" align="center" prop="userName" />
+              <el-table-column label="案事件分组" align="center" prop="userName" :show-overflow-tooltip="true" />
+              <el-table-column label="核查企业数" align="center" prop="nickName" :show-overflow-tooltip="true" />
+              <el-table-column label="创建账号" align="center" prop="dept.deptName" :show-overflow-tooltip="true" />
+              <el-table-column label="创建时间" align="center" prop="createTime" width="160">
+                <template slot-scope="scope">
+                  <span>{{ parseTime(scope.row.createTime) }}</span>
+                </template>
+              </el-table-column>
+              <el-table-column label="状态" align="center" prop="phonenumber" width="120" />
+              <el-table-column
+                label="操作"
+                align="center"
+                width="180"
+                class-name="small-padding fixed-width"
+              >
+                <template slot-scope="scope">
+                  <el-button
+                    size="mini"
+                    type="primary"
+                    icon="el-icon-download"
+                    @click="handleExport(scope.row)"
+                    v-hasPermi="['system:user:remove']"
+                  >下载</el-button>
+                  <el-button
+                    size="mini"
+                    type="success"
+                    icon="el-icon-delete"
+                    v-hasPermi="['system:user:remove']"
+                  >详情</el-button>
+                </template>
+              </el-table-column>
+            </el-table>
+            <pagination
+              v-show="total>0"
+              :total="total"
+              :page.sync="queryParams.pageNum"
+              :limit.sync="queryParams.pageSize"
+              @pagination="getList"
+            />
+
+        </div>
+      </div>
+
+    </div>
+    <div slot="footer" class="dialog-footer">
+      <el-button @click="handleCancel">取 消</el-button>
+      <el-button type="primary" @click="submit" v-if="!limit.isRead">确 定</el-button>
+    </div>
+  </el-dialog>
+</template>
+
+<script>
+// import { updateRecordChek } from "@/api/system/recordCheck";
+export default {
+  name: 'addMobiel',
+  props: {
+    visible: {
+      type: Boolean,
+      default: false
+    },
+    title: {
+      type: String,
+      default: 'title'
+    },
+    action: {
+      type: String,
+      default: 'add'
+    },
+    selectRow: {
+      type: Object,
+      default: {}
+    }
+  },
+  watch: {
+    visible(newVal, oldVal) {
+      this.modalVisible = newVal;
+    },
+    title(newVal, oldVal) {
+      this.modalTitle = newVal;
+    },
+    action(newVal, oldVal) {
+      this.modalAction = newVal;
+    },
+    selectRow(newVal, oldVal) {
+      this.modalSelectRow = newVal;
+    }
+  },
+  data() {
+    return {
+      modalTitle: this.title,
+      modalVisible: this.visible,
+      modalAction: this.action,
+      modalSelectRow: this.selectRow,
+      formLabelWidth: '1024px',
+      //窗口权限
+      limit: {
+        isRead: false, //是否只读
+        isAdd: false //是否可写
+      },
+      rules: {
+        status: [{ required: true, message: '审核结果不能为空!', trigger: 'blur' }]
+      },
+      total: 0,
+      //审核状态
+      statusOptions: [],
+      // 性别状态数据字典
+      sexTypeOptions: [],
+      list:[],
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        userName: undefined,
+        phonenumber: undefined,
+        status: undefined,
+        deptId: undefined
+      },
+      loading:false,
+      form: {}
+    };
+  },
+  created() {
+    this.initPage();
+    this.form = Object.assign({},this.modalSelectRow)
+    switch (this.modalAction) {
+      case 'add':
+        this.limit.isAdd = true;
+        break;
+      case 'view':
+        this.limit.isRead = true;
+        break;
+      default:
+        break;
+    }
+  },
+  methods: {
+    //强制视图渲染
+    forceUpdate() {
+      this.$forceUpdate();
+    },
+    //初始化默认值
+    initPage() {
+      //审核字典查询
+      this.getDicts("user_ext_status").then(response => {
+        this.statusOptions = response.data;
+      });
+      //性别字典查询
+      this.getDicts("sys_user_sex").then(response => {
+        this.sexTypeOptions = response.data;
+      });
+    },
+    submit() {
+      this.$refs.from.validate(valid => {
+        if (valid) {
+          let params = {
+            id:this.form.id,
+            status:this.form.status,
+            remark:this.form.remark
+          }
+          updateRecordChek(params).then(response => {
+              if (response.code === 200) {
+                this.msgSuccess("操作成功");
+                this.modalVisible = false
+               	this.$emit('closeModal', true);
+              }
+          });
+        } else {
+          return false;
+        }
+      });
+    },
+    handleCancel() {
+      this.$emit('closeModal', false);
+    },
+    getList(){
+
+    }
+  },
+  computed:{
+    // 性别状态字典翻译
+    sexFormat() {
+       return function(val){
+         return this.selectDictLabel(this.sexTypeOptions, val);
+       }
+    }
+  }
+};
+</script>
+
+<style lang="scss" scoped>
+  .hc-box{
+    border:1px solid #e9e9e9;
+    margin-bottom:20px;
+    .hc-box-header{
+        height:40px;
+        line-height:40px;
+        background:#fafafa;
+        font-weight:bold;
+        color:#333;
+        padding:0 15px;
+        .action{
+          margin-left:10px;
+          color:#304FFE
+        }
+    }
+
+
+  }
+  .add{
+    .hc-box-wrap{
+      padding:15px 30px 15px 0;
+    }
+  }
+  .taskList{
+    .hc-box-wrap{
+      padding:15px;
+    }
+  }
+</style>

+ 8 - 0
src/views/belongToSubject/area/index.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
src/views/belongToSubject/org/index.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
src/views/belongToSubject/people/index.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
src/views/productManage/commodity/index.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
src/views/productManage/productInfo/index.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>