no message
							parent
							
								
									6374869c21
								
							
						
					
					
						commit
						ce53b17247
					
				| 
						 | 
				
			
			@ -55,5 +55,21 @@ export function pickBarBack(pickDetailId) {
 | 
			
		|||
    data: pickDetailId
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
/* 呼叫验货*/
 | 
			
		||||
export function hjYh(ids) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'api/pickDetail/hjYh',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: ids
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
/* 验货完成*/
 | 
			
		||||
export function yhWc(ids) {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'api/pickDetail/yhWc',
 | 
			
		||||
    method: 'post',
 | 
			
		||||
    data: ids
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default { add, edit, del,allocate,cancelAllocate,picking,pickBarBack }
 | 
			
		||||
export default { add, edit, del,allocate,cancelAllocate,picking,pickBarBack,hjYh,yhWc }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -94,5 +94,10 @@ export function queryPointInfo(data) {
 | 
			
		|||
    data
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default { add, edit, del,getPoints,queryPointList ,fullStockIn,pointCallStock,fullStockOut,pointStockBack,multiAdjust,queryPointInfo}
 | 
			
		||||
export function clearCk() {
 | 
			
		||||
  return request({
 | 
			
		||||
    url: 'api/point/clearCk',
 | 
			
		||||
    method: 'post'
 | 
			
		||||
  })
 | 
			
		||||
}
 | 
			
		||||
export default { add, edit, del,getPoints,queryPointList ,fullStockIn,pointCallStock,fullStockOut,pointStockBack,multiAdjust,queryPointInfo,clearCk}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -88,16 +88,15 @@
 | 
			
		|||
          :show-file-list="true">
 | 
			
		||||
          <el-button size="mini" type="success" icon="el-icon-upload2">导入</el-button>
 | 
			
		||||
        </el-upload>
 | 
			
		||||
 | 
			
		||||
        <el-button
 | 
			
		||||
          v-show="false"
 | 
			
		||||
          slot="right"
 | 
			
		||||
          class="filter-item"
 | 
			
		||||
          size="mini"
 | 
			
		||||
          type="danger"
 | 
			
		||||
          icon="el-icon-s-order"
 | 
			
		||||
          @click="MultiAdjust"
 | 
			
		||||
        >批量调整
 | 
			
		||||
            slot="left"
 | 
			
		||||
            class="filter-item"
 | 
			
		||||
            type="danger"
 | 
			
		||||
            icon="el-icon-remove"
 | 
			
		||||
            size="mini"
 | 
			
		||||
            @click="clearCk()"
 | 
			
		||||
        >
 | 
			
		||||
          清空备货位
 | 
			
		||||
        </el-button>
 | 
			
		||||
      </crudOperation>
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -398,6 +397,13 @@ export default {
 | 
			
		|||
        data.enabled = !data.enabled
 | 
			
		||||
      })
 | 
			
		||||
    },
 | 
			
		||||
    clearCk() {
 | 
			
		||||
      pointUrl.clearCk().then(res => {
 | 
			
		||||
        this.crud.notify("清理成功", CRUD.NOTIFICATION_TYPE.SUCCESS);
 | 
			
		||||
      }).catch(e => {
 | 
			
		||||
        this.crud.notify("清理失败", CRUD.NOTIFICATION_TYPE.ERROR);
 | 
			
		||||
      })
 | 
			
		||||
    },
 | 
			
		||||
    getArea() {
 | 
			
		||||
      getAres({size: 50}).then(res => {
 | 
			
		||||
        this.areas = res.content.map(function (obj) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -313,7 +313,7 @@ export default {
 | 
			
		|||
      const ids = datas.map(v => v.id);
 | 
			
		||||
 | 
			
		||||
      crudAgvTask.sendReAgvTask(ids).then(res => {
 | 
			
		||||
        this.crud.notify(res.message, CRUD.NOTIFICATION_TYPE.SUCCESS)
 | 
			
		||||
        this.crud.notify(res.msg, CRUD.NOTIFICATION_TYPE.SUCCESS)
 | 
			
		||||
        this.crud.toQuery()
 | 
			
		||||
      })
 | 
			
		||||
    },
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,13 +1,80 @@
 | 
			
		|||
<template>
 | 
			
		||||
$END$
 | 
			
		||||
</template>
 | 
			
		||||
  <div>
 | 
			
		||||
    <el-dialog :visible.sync="this.dialog"
 | 
			
		||||
               :title="title"
 | 
			
		||||
               width="450px"
 | 
			
		||||
               :before-close="cancelForm">
 | 
			
		||||
      <el-form ref="form" :model="form" :rules="rules" size="small">
 | 
			
		||||
        <!--      <el-date-picker v-model="query.createTime" class="date-item" style="width: 100px"/>-->
 | 
			
		||||
        <el-form-item label="工单编号" prop="gdCode">
 | 
			
		||||
          <el-input v-model="form.gdCode" style="width: 270px;" />
 | 
			
		||||
        </el-form-item>
 | 
			
		||||
      </el-form>
 | 
			
		||||
 | 
			
		||||
      <span slot="footer" class="dialog-footer">
 | 
			
		||||
    <el-button @click="cancelForm">取 消</el-button>
 | 
			
		||||
    <el-button type="primary" @click="submitMlsOrder(form)">确 定</el-button>
 | 
			
		||||
    </span>
 | 
			
		||||
    </el-dialog>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
<script>
 | 
			
		||||
import crudOrder from "@/api/order"
 | 
			
		||||
import crudPickDetail from "@/api/pickDetail"
 | 
			
		||||
import DateRangePicker from "@/components/DateRangePicker/index.vue";
 | 
			
		||||
import CRUD, {presenter, header, form, crud} from '@crud/crud'
 | 
			
		||||
import rrOperation from '@crud/RR.operation'
 | 
			
		||||
import crudOperation from '@crud/CRUD.operation'
 | 
			
		||||
import udOperation from '@crud/UD.operation'
 | 
			
		||||
import pagination from '@crud/Pagination'
 | 
			
		||||
const defaultForm = {
 | 
			
		||||
  id: null
 | 
			
		||||
}
 | 
			
		||||
export default {
 | 
			
		||||
name: "addPlanOrder"
 | 
			
		||||
  components: {DateRangePicker, pagination, crudOperation, rrOperation, udOperation},
 | 
			
		||||
  mixins: [form(defaultForm), crud()],  data() {
 | 
			
		||||
    return {
 | 
			
		||||
      dialog:false,
 | 
			
		||||
      title: '验货成功',
 | 
			
		||||
      form:{
 | 
			
		||||
        gdCode:null
 | 
			
		||||
      },
 | 
			
		||||
      rules: {
 | 
			
		||||
        gdCode: [
 | 
			
		||||
          {required: true, message: '必填', trigger: 'blur'}
 | 
			
		||||
        ]
 | 
			
		||||
      },
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    openForm(){
 | 
			
		||||
      console.log("打开")
 | 
			
		||||
      this.dialog = true;
 | 
			
		||||
    },
 | 
			
		||||
    cancelForm(){
 | 
			
		||||
      this.dialog = false;
 | 
			
		||||
      this.$refs['form'].resetFields();
 | 
			
		||||
    },
 | 
			
		||||
    submitMlsOrder(data) {
 | 
			
		||||
      console.log("2:"+data.gdCode)
 | 
			
		||||
      crudPickDetail.yhWc(data).then(res => {
 | 
			
		||||
        this.crud.notify(res.msg, CRUD.NOTIFICATION_TYPE.SUCCESS);
 | 
			
		||||
        this.crud.toQuery();
 | 
			
		||||
        this.dialog = false;//关闭窗口
 | 
			
		||||
      })
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
<style scoped>
 | 
			
		||||
.java.hljs {
 | 
			
		||||
  color: #444;
 | 
			
		||||
  background: #ffffff !important;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
::v-deep .el-dialog__body {
 | 
			
		||||
  padding: 0 20px 10px 20px !important;
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -10,6 +10,16 @@
 | 
			
		|||
      </div>
 | 
			
		||||
      <!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
 | 
			
		||||
      <crudOperation :permission="permission" :tableKey="this.$options.name" >
 | 
			
		||||
        <el-button
 | 
			
		||||
            slot="left"
 | 
			
		||||
            class="filter-item"
 | 
			
		||||
            type="success"
 | 
			
		||||
            icon="el-icon-zoom-out"
 | 
			
		||||
            size="mini"
 | 
			
		||||
            @click="$refs.addPlanOrder.openForm()"
 | 
			
		||||
        >
 | 
			
		||||
          新增
 | 
			
		||||
        </el-button>
 | 
			
		||||
        <el-button
 | 
			
		||||
          slot="right"
 | 
			
		||||
          class="filter-item"
 | 
			
		||||
| 
						 | 
				
			
			@ -29,6 +39,7 @@
 | 
			
		|||
          :disabled="crud.selections.length !== 1"
 | 
			
		||||
        >盘点登记</el-button>
 | 
			
		||||
      </crudOperation>
 | 
			
		||||
      <AddPlanOrder ref="addPlanOrder"/>
 | 
			
		||||
      <viewCountDetail ref="planDetail" />
 | 
			
		||||
      <viewCountRecord ref="gatherCountRecord" />
 | 
			
		||||
      <!--表单组件-->
 | 
			
		||||
| 
						 | 
				
			
			@ -95,15 +106,24 @@ import udOperation from '@crud/UD.operation'
 | 
			
		|||
import pagination from '@crud/Pagination'
 | 
			
		||||
import viewCountDetail from '@/views/business-data/countDetail/index.vue'
 | 
			
		||||
import viewCountRecord from '@/views/business-data/countPlan/viewCountRecord.vue'
 | 
			
		||||
import AddPlanOrder from '@/views/business-data/countPlan/addPlanOrder.vue'
 | 
			
		||||
import DonMessage from '@/utils/message'
 | 
			
		||||
const defaultForm = { id: null, code: null, name: null, deptId: null, status: null, type: null, orderQty: null, countQty: null, remark: null, sourceName: null, sourceId: null, createBy: null, updateBy: null, createTime: null, updateTime: null }
 | 
			
		||||
export default {
 | 
			
		||||
  name: 'CountPlan',
 | 
			
		||||
  components: { pagination, crudOperation, rrOperation, udOperation, viewCountDetail,viewCountRecord },
 | 
			
		||||
  components: { pagination, crudOperation, rrOperation, udOperation, viewCountDetail,viewCountRecord,AddPlanOrder },
 | 
			
		||||
  mixins: [presenter(), header(), form(defaultForm), crud()],
 | 
			
		||||
  dicts: ['count_type', 'count_status'],
 | 
			
		||||
  cruds() {
 | 
			
		||||
    return CRUD({ title: '盘点计划', url: 'api/countPlan', idField: 'id', sort: 'id,desc', crudMethod: { ...crudCountPlan }})
 | 
			
		||||
    return CRUD({ title: '盘点计划', url: 'api/countPlan', idField: 'id', sort: 'id,desc', crudMethod: { ...crudCountPlan },
 | 
			
		||||
      optShow: {
 | 
			
		||||
        add: false,
 | 
			
		||||
        edit: true,
 | 
			
		||||
        del: true,
 | 
			
		||||
        reset: true,
 | 
			
		||||
        download: true
 | 
			
		||||
      }
 | 
			
		||||
    })
 | 
			
		||||
  },
 | 
			
		||||
  data() {
 | 
			
		||||
    return {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -25,7 +25,7 @@
 | 
			
		|||
 | 
			
		||||
      <label class="el-form-item-label">任务状态</label>
 | 
			
		||||
      <el-select
 | 
			
		||||
        v-model="query.agvStatus"
 | 
			
		||||
        v-model="query.taskStatus"
 | 
			
		||||
        clearable
 | 
			
		||||
        size="small"
 | 
			
		||||
        placeholder="任务状态"
 | 
			
		||||
| 
						 | 
				
			
			@ -60,9 +60,29 @@
 | 
			
		|||
        <rrOperation :crud="crud"/>
 | 
			
		||||
      </div>
 | 
			
		||||
      <!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
 | 
			
		||||
      <crudOperation :permission="permission" :tableKey="this.$options.name"/>
 | 
			
		||||
      <crudOperation :permission="permission" :tableKey="this.$options.name">
 | 
			
		||||
<!--        <el-button
 | 
			
		||||
            slot="right"
 | 
			
		||||
            class="filter-item"
 | 
			
		||||
            size="mini"
 | 
			
		||||
            type="info"
 | 
			
		||||
            icon="el-icon-s-order"
 | 
			
		||||
            @click="backTask(crud.selections)"
 | 
			
		||||
            :disabled="crud.selections.length !== 1"
 | 
			
		||||
        >返库</el-button>-->
 | 
			
		||||
        <el-button
 | 
			
		||||
            slot="right"
 | 
			
		||||
            class="filter-item"
 | 
			
		||||
            type="success"
 | 
			
		||||
            icon="el-icon-zoom-out"
 | 
			
		||||
            size="mini"
 | 
			
		||||
            @click="$refs.addPlanOrder.openForm()"
 | 
			
		||||
        >
 | 
			
		||||
          验货完成
 | 
			
		||||
        </el-button>
 | 
			
		||||
      </crudOperation>
 | 
			
		||||
      <!--表单组件-->
 | 
			
		||||
 | 
			
		||||
      <AddPlanOrder ref="addPlanOrder"/>
 | 
			
		||||
      <!--表格渲染-->
 | 
			
		||||
      <el-table ref="table" height="66vh" v-loading="crud.loading" :data="crud.data" size="small" style="width: 100%;"
 | 
			
		||||
                @selection-change="crud.selectionChangeHandler">
 | 
			
		||||
| 
						 | 
				
			
			@ -92,9 +112,9 @@
 | 
			
		|||
        <el-table-column prop="srcStockCode" label="容器编码"/>
 | 
			
		||||
        <el-table-column prop="srcPointCode" label="原点位"/>
 | 
			
		||||
        <el-table-column prop="dstPointCode" label="目标点位"/>
 | 
			
		||||
        <el-table-column prop="agvStatus" label="任务状态">
 | 
			
		||||
        <el-table-column prop="taskStatus" label="任务状态">
 | 
			
		||||
          <template slot-scope="scope">
 | 
			
		||||
            {{ dict.label.task_status[scope.row.agvTask.status] }}
 | 
			
		||||
            {{ dict.label.task_status[scope.row.taskStatus] }}
 | 
			
		||||
          </template>
 | 
			
		||||
        </el-table-column>
 | 
			
		||||
        <el-table-column prop="planQty" label="计划数量"/>
 | 
			
		||||
| 
						 | 
				
			
			@ -118,7 +138,10 @@ import crudOperation from '@crud/CRUD.operation'
 | 
			
		|||
import udOperation from '@crud/UD.operation'
 | 
			
		||||
import pagination from '@crud/Pagination'
 | 
			
		||||
import DateRangePicker from "@/components/DateRangePicker/index.vue";
 | 
			
		||||
import AddPlanOrder from '@/views/business-data/countPlan/addPlanOrder.vue'
 | 
			
		||||
 | 
			
		||||
import {getItemsList} from "@/api/item";
 | 
			
		||||
import pickDetail from "@/api/pickDetail";
 | 
			
		||||
 | 
			
		||||
const defaultForm = {
 | 
			
		||||
  id: null,
 | 
			
		||||
| 
						 | 
				
			
			@ -153,14 +176,13 @@ const defaultForm = {
 | 
			
		|||
  updateTime: null
 | 
			
		||||
}
 | 
			
		||||
export default {
 | 
			
		||||
  name: 'Task',
 | 
			
		||||
  components: {DateRangePicker, pagination, crudOperation, rrOperation, udOperation},
 | 
			
		||||
  components: {DateRangePicker, pagination, crudOperation, rrOperation, udOperation, AddPlanOrder},
 | 
			
		||||
  mixins: [presenter(), header(), form(defaultForm), crud()],
 | 
			
		||||
  dicts: ['task_status'],
 | 
			
		||||
  cruds() {
 | 
			
		||||
    return CRUD({
 | 
			
		||||
        query: {taskType: ['PICK']},
 | 
			
		||||
        title: '出库任务',
 | 
			
		||||
        query: {taskType: ['INV']},
 | 
			
		||||
        title: '验货任务',
 | 
			
		||||
        url: 'api/task',
 | 
			
		||||
        idField: 'id',
 | 
			
		||||
        sort: 'id,desc',
 | 
			
		||||
| 
						 | 
				
			
			@ -206,6 +228,12 @@ export default {
 | 
			
		|||
    indexMethod(index) {
 | 
			
		||||
      return index * 1 + 1;
 | 
			
		||||
    },
 | 
			
		||||
    backTask(datas){
 | 
			
		||||
      const ids = datas.map(v => v.id);
 | 
			
		||||
      pickDetail.backTask(ids).then(res => {
 | 
			
		||||
        this.crud.notify(res.msg, res.notify);
 | 
			
		||||
      })
 | 
			
		||||
    },
 | 
			
		||||
    //物料数据
 | 
			
		||||
    itemDataGet() {
 | 
			
		||||
      getItemsList().then(res => {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -33,13 +33,42 @@
 | 
			
		|||
      <label class="el-form-item-label">容器号</label>
 | 
			
		||||
      <el-input v-model="query.stockCode" clearable placeholder="请输入容器号" style="width: 150px;" class="filter-item"
 | 
			
		||||
                @keyup.enter.native="crud.toQuery"/>
 | 
			
		||||
      <label class="el-form-item-label">待检验</label>
 | 
			
		||||
      <el-select
 | 
			
		||||
          v-model="query.beLock"
 | 
			
		||||
          clearable
 | 
			
		||||
          size="small"
 | 
			
		||||
          placeholder="状态"
 | 
			
		||||
          class="filter-item"
 | 
			
		||||
          style="width: 100px"
 | 
			
		||||
          @change="crud.toQuery"
 | 
			
		||||
      >
 | 
			
		||||
        <el-option
 | 
			
		||||
            v-for="item in dict.base_staus"
 | 
			
		||||
            :key="item.id"
 | 
			
		||||
            :label="item.label"
 | 
			
		||||
            :value="item.value"
 | 
			
		||||
        />
 | 
			
		||||
      </el-select>
 | 
			
		||||
      <rrOperation :crud="crud"/>
 | 
			
		||||
 | 
			
		||||
      <el-button class="filter-item" size="mini" type="warning" icon="el-icon-refresh-left" @click="resetQuery">重置
 | 
			
		||||
      </el-button>
 | 
			
		||||
 | 
			
		||||
      <!--如果想在工具栏加入更多按钮,可以使用插槽方式, slot = 'left' or 'right'-->
 | 
			
		||||
      <crudOperation :permission="permission" :tableKey="this.$options.name"/>
 | 
			
		||||
      <crudOperation :permission="permission" :tableKey="this.$options.name">
 | 
			
		||||
        <el-button
 | 
			
		||||
            slot="left"
 | 
			
		||||
            class="filter-item"
 | 
			
		||||
            type="danger"
 | 
			
		||||
            icon="el-icon-circle-plus-outline"
 | 
			
		||||
            size="mini"
 | 
			
		||||
            :disabled="crud.selections.length == 0"
 | 
			
		||||
            @click="hjYh(crud.selections)"
 | 
			
		||||
        >
 | 
			
		||||
          呼叫验货
 | 
			
		||||
        </el-button>
 | 
			
		||||
      </crudOperation>
 | 
			
		||||
      <!--表单组件-->
 | 
			
		||||
      <el-dialog :close-on-click-modal="false" :before-close="crud.cancelCU" :visible.sync="crud.status.cu > 0"
 | 
			
		||||
                 :title="crud.status.title" width="500px">
 | 
			
		||||
| 
						 | 
				
			
			@ -122,6 +151,11 @@
 | 
			
		|||
        <el-table-column prop="stockCode" label="容器号"/>
 | 
			
		||||
        <el-table-column prop="quantity" label="数量"/>
 | 
			
		||||
        <el-table-column prop="queuedQty" label="占用数"/>
 | 
			
		||||
        <el-table-column prop="beLock" label="待检验">
 | 
			
		||||
          <template slot-scope="scope">
 | 
			
		||||
            {{ dict.label.base_staus[scope.row.beLock] }}
 | 
			
		||||
          </template>
 | 
			
		||||
        </el-table-column>
 | 
			
		||||
        <el-table-column prop="createTime" label="入库时间"/>
 | 
			
		||||
        <!--        <el-table-column v-if="checkPer(['admin','fileManagement:edit','fileManagement:del'])" label="操作"
 | 
			
		||||
                                 width="150px" align="center" fixed="right">
 | 
			
		||||
| 
						 | 
				
			
			@ -149,6 +183,7 @@ import rrOperation from '@crud/RR.operation'
 | 
			
		|||
import crudOperation from '@crud/CRUD.operation'
 | 
			
		||||
import udOperation from '@crud/UD.operation'
 | 
			
		||||
import pagination from '@crud/Pagination'
 | 
			
		||||
import pickDetail from "@/api/pickDetail";
 | 
			
		||||
 | 
			
		||||
const defaultForm = {
 | 
			
		||||
  id: null,
 | 
			
		||||
| 
						 | 
				
			
			@ -179,6 +214,7 @@ export default {
 | 
			
		|||
  name: 'Inventory',
 | 
			
		||||
  components: {pagination, crudOperation, rrOperation, udOperation},
 | 
			
		||||
  mixins: [presenter(), header(), form(defaultForm), crud()],
 | 
			
		||||
  dicts: ['base_staus'],
 | 
			
		||||
  cruds() {
 | 
			
		||||
    return CRUD({
 | 
			
		||||
      query: {
 | 
			
		||||
| 
						 | 
				
			
			@ -226,6 +262,13 @@ export default {
 | 
			
		|||
        })
 | 
			
		||||
      })
 | 
			
		||||
    },
 | 
			
		||||
    hjYh(datas) {
 | 
			
		||||
      const ids = datas.map(v => v.id);
 | 
			
		||||
      pickDetail.hjYh(ids).then(res => {
 | 
			
		||||
        this.crud.notify(res.msg, res.notify);
 | 
			
		||||
        this.crud.toQuery();
 | 
			
		||||
      })
 | 
			
		||||
    },
 | 
			
		||||
    deleteDataM(id) {//删除数据的方法
 | 
			
		||||
      let ids = [];
 | 
			
		||||
      ids.push(id);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -46,7 +46,7 @@
 | 
			
		|||
 | 
			
		||||
      <div>
 | 
			
		||||
        <label class="el-form-item-label">Mo票</label>
 | 
			
		||||
        <el-input v-model="query.propC1" clearable placeholder="Mo票" style="width: 180px;" class="filter-item"
 | 
			
		||||
        <el-input v-model="query.propC1" clearable placeholder="Mo票" style="width: 170px;" class="filter-item"
 | 
			
		||||
                  @keyup.enter.native="crud.toQuery"/>
 | 
			
		||||
        <label class="el-form-item-label">工单编号</label>
 | 
			
		||||
        <el-input v-model="query.orderNumber" clearable placeholder="工单编号" style="width: 170px;" class="filter-item"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue