<template>
  <div class="app-container basicsInfo">
    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="100px">
      <!-- <el-form-item label="工单类型" prop="orderType">
        <el-select v-model="queryParams.orderType" placeholder="请选择工单类型" filterable clearable size="small">
          <el-option
              v-for="dict in ordertypeOptions"
              :key="dict.dictValue"
              :label="dict.dictLabel"
              :value="dict.dictValue"
            ></el-option>
        </el-select>
      </el-form-item> -->
      <el-form-item label="工单编号" prop="orderId">
        <el-input
          v-model="queryParams.orderId"
          placeholder="请输入工单编号"
          clearable
          size="small"
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
      <el-form-item label="工单状态" prop="orderStatus">
        <el-select v-model="queryParams.orderStatus" placeholder="请选择工单状态" filterable clearable size="small">
          <el-option
              v-for="dict in typeOptions"
              :key="dict.dictValue"
              :label="dict.dictLabel"
              :value="dict.dictValue"
            ></el-option>
        </el-select>
      </el-form-item>
      <el-form-item label="创建时间" prop="startAllotTime">
        <el-date-picker
          clearable size="small"
          v-model="queryParams.startAllotTime"
          value-format="yyyy-MM-dd HH:mm:ss"
          type="datetime"
          placeholder="请选择起始时间"
          align="right">
        </el-date-picker>
        <font color="#C0C4CC"> 至</font>
      </el-form-item>
      <el-form-item label="" prop="endAllotTime">
        <el-date-picker
          clearable size="small"
          v-model="queryParams.endAllotTime"
          value-format="yyyy-MM-dd HH:mm:ss"
          type="datetime"
          placeholder="请选择截止时间"
          align="right">
        </el-date-picker>
      </el-form-item>
      <el-form-item>
        <el-button type="primary" 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-table v-loading="loading" :data="basicsInfoList" @selection-change="handleSelectionChange">
      <el-table-column label="工单编号" align="center" prop="orderId" />
      <el-table-column label="工单名称" align="center" prop="orderName" width="350px"/>
      <el-table-column label="工单类型" align="center" prop="orderType" >
        <template slot-scope="scope">
          <el-button type="primary" v-if="scope.row.orderType == 1">巡检信息</el-button>
          <el-button type="warning" v-if="scope.row.orderType == 2">隐患信息</el-button>
          <el-button type="danger" v-if="scope.row.orderType == 3">报警信息</el-button>
        </template>
      </el-table-column>
      <el-table-column label="指定执行人员" align="center" prop="appointInspectorName" />
      <el-table-column label="创建时间" align="center" prop="allotTime">
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.allotTime) }}</span>
        </template>
      </el-table-column>
      <el-table-column label="更新时间" align="center" prop="actualTime">
        <template slot-scope="scope">
          <span v-if="scope.row.actualTime != null">{{ scope.row.actualTime }}</span>
          <span v-if="scope.row.actualTime == null">-</span>
        </template>
      </el-table-column>
      <el-table-column label="工单状态" align="center" prop="orderStatus" >
        <template slot-scope="scope">
          <span type="info" v-if="scope.row.orderStatus == 0">未接收</span>
          <span type="warning" v-if="scope.row.orderStatus == 1">已接收</span>
          <span type="primary" v-if="scope.row.orderStatus == 2">已反馈</span>
          <span type="success" v-if="scope.row.orderStatus == 3">已归档</span>
        </template>
      </el-table-column>
      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
        <template slot-scope="scope">
          <el-button
            size="normal"
            type="text"
            icon="el-icon-edit"
            @click="handleUpdate(scope.row)"
            v-hasPermi="['workOrder:basicsInfo:edit']"
            v-if="scope.row.orderStatus == 0"
          >修改</el-button>
          <el-button
            size="normal"
            type="text"
            icon="el-icon-edit"
            @click="handleFinish(scope.row)"
            v-hasPermi="['workOrder:basicsInfo:editStatus']"
            v-if="scope.row.orderStatus == 2"
          >归档</el-button>
          <el-button
          size="normal"
          type="text"
          icon="el-icon-edit"
          @click="showDetail(scope.row)"
          v-hasPermi="['workOrder:basicsInfo:query']"
        >详情</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"
  />


    <!-- 归档或修改工单基础信息对话框 -->
    <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body @close="cancel">
      <el-form ref="form" :model="form" :rules="rules" label-width="120px">
        <div v-if="this.title == '工单信息修改'">
          <el-form-item label="工单名称" prop="orderName">
            <el-input v-model="form.orderName" placeholder="请输入工单名称" style="width: 600px" />
          </el-form-item>
          <el-form-item label="指定执行人员" prop="appointInspector">
            <el-select v-model="form.appointInspector" placeholder="请选择执行人员" filterable clearable size="small" @change="setUserId" style="width: 600px">
              <el-option
                v-for="item in inspector"
                :key="item.userId"
                :label="item.nickName"
                :value="item.userId"
              ></el-option>
            </el-select>
          </el-form-item>
          <el-form-item label="工单描述" prop="remarks">
            <el-input v-model="form.remarks" type="textarea" placeholder="请输入工单描述" style="width: 600px" />
          </el-form-item>
        </div>
        <div v-if="this.title == '工单信息归档'">
          <el-form-item label="工单名称">
            <font>{{form.orderName}}</font>
          </el-form-item>
          <el-form-item label="工单类型">
            <span type="primary" v-if="form.orderType == 1">巡检信息</span>
            <span type="primary" v-if="form.orderType == 2">隐患信息</span>
            <span type="primary" v-if="form.orderType == 3">报警信息</span>
          </el-form-item>
          <el-form-item label="工单编号">
            <font>{{form.orderId}}</font>
          </el-form-item>
          <el-form-item label="归档信息" prop="archiving">
            <el-input v-model="form.archiving" type="textarea" placeholder="请输入归档信息" style="width: 600px" />
          </el-form-item>
        </div>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitForm">确 定</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div>
    </el-dialog>
  </div>
</template>

<script>
import { listBasicsInfo, getBasicsInfo, delBasicsInfo, updateOrderStatus, updateBasicsInfo, exportBasicsInfo } from "@/api/workOrder/basicsInfo";
import { inspectorList } from "@/api/system/user";

export default {
  name: "BasicsInfo",
  components: {
  },
  data() {
    return {
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 选中数组
      ids: [],
      // 非单个禁用
      single: true,
      // 非多个禁用
      multiple: true,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 工单基础信息表格数据
      basicsInfoList: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      // 工单状态字典
      typeOptions: [],
      // 巡检员列表
      inspector: [],
      // 时间搜索
      pickerOptions: [],
      // 工单类型字典
      ordertypeOptions: [],
      // 查询参数
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        orderId: null,
        orderType: null,
        orderName: null,
        orderStatus: null,
        appointInspector: null,
        startAllotTime: null,
        endAllotTime: null,
        remarks: null
      },
      // 表单参数
      form: {},
      // 表单校验
      rules: {
        orderName: [
          { required: true, message: "请输入工单名称", trigger: "blur" }
        ],
        appointInspector: [
          { required: true, message: "请选择执行人员", trigger: "blur" }
        ],
      }
    };
  },
  created() {
    this.getList();
    this.getDicts("t_order_status").then(response => {
      this.typeOptions = response.data;
    });
    this.getDicts("t_order_type").then(response => {
      this.ordertypeOptions = response.data;
    });
  },
  methods: {
    /** 查询工单基础信息列表 */
    getList() {
      this.loading = true;
      listBasicsInfo(this.queryParams).then(response => {
        this.basicsInfoList = response.rows;
        this.total = response.total;
        this.loading = false;
      });
    },
    getInspectorList(){
      this.loading = true;
      inspectorList().then(response => {
        this.inspector = response.data;
        this.loading = false;
      });
    },
    setUserId(val){
      this.form.appointInspector = val;
    },
    // 取消按钮
    cancel() {
      this.open = false;
      this.reset();
    },
    // 表单重置
    reset() {
      this.form = {
        orderId: null,
        orderType: null,
        orderName: null,
        orderStatus: "0",
        createTime: null,
        appointInspector: null,
        allotTime: null,
        actualInspector: null,
        actualTime: null,
        remarks: null
      };
      this.resetForm("form");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNum = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.resetForm("queryForm");
      this.handleQuery();
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      this.ids = selection.map(item => item.orderId)
      this.single = selection.length!==1
      this.multiple = !selection.length
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.reset();
      this.open = true;
      this.title = "添加工单基础信息";
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      this.getInspectorList();
      const orderId = row.orderId || this.ids
      getBasicsInfo(orderId).then(response => {
        this.form = response.data;
        this.open = true;
        this.title = "工单信息修改";
      });
    },
    /** 归档按钮操作 */
    handleFinish(row) {
      this.reset();
      const orderId = row.orderId || this.ids
      getBasicsInfo(orderId).then(response => {
        this.form = response.data;
        this.open = true;
        this.title = "工单信息归档";
      });
    },
    /** 详细信息跳转 */
    showDetail(row) {
      this.$router.push({
         path: '/workOrder/detail',
         query:{
           orderId : row.orderId
         }
      }) //带参跳转
    },
    /** 提交按钮 */
    submitForm() {
      this.$refs["form"].validate(valid => {
        if (valid) {
          if (this.form.orderStatus == '0') {
            updateBasicsInfo(this.form).then(response => {
              this.msgSuccess("修改成功");
              this.open = false;
              this.getList();
            });
          } else if(this.form.orderStatus == '2'){
            updateOrderStatus(this.form).then(response => {
              this.msgSuccess("操作成功");
              this.open = false;
              this.getList();
            });
          }
        }
      });
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const orderIds = row.orderId || this.ids;
      this.$confirm('是否确认删除工单基础信息编号为"' + orderIds + '"的数据项?', "警告", {
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning"
        }).then(function() {
          return delBasicsInfo(orderIds);
        }).then(() => {
          this.getList();
          this.msgSuccess("删除成功");
        }).catch(() => {});
    },
    /** 导出按钮操作 */
    handleExport() {
      const queryParams = this.queryParams;
      this.$confirm('是否确认导出所有工单基础信息数据项?', "警告", {
          confirmButtonText: "确定",
          cancelButtonText: "取消",
          type: "warning"
        }).then(() => {
          this.exportLoading = true;
          return exportBasicsInfo(queryParams);
        }).then(response => {
          this.download(response.msg);
          this.exportLoading = false;
        }).catch(() => {});
    }
  }
};
</script>
<style>
</style>