|  | @@ -326,55 +326,54 @@
 | 
	
		
			
				|  |  |      >
 | 
	
		
			
				|  |  |        <el-table-column type="selection" width="60" fixed align="center" />
 | 
	
		
			
				|  |  |        <el-table-column type="index" label="行号" fixed align="center" />
 | 
	
		
			
				|  |  | -      <el-table-column  label="制单人" align="center" prop="createBy" fixed/>
 | 
	
		
			
				|  |  | -      <el-table-column  label="仓管员" width="100" align="center" sortable prop="fStorekeeper" fixed/>
 | 
	
		
			
				|  |  | -      <el-table-column width="100" label="出库状态" fixed sortable align="center" prop="fItemsStatus">
 | 
	
		
			
				|  |  | -        <template slot-scope="scope">
 | 
	
		
			
				|  |  | -          <span v-if="scope.row.fItemsStatus === 1">计划</span>
 | 
	
		
			
				|  |  | -          <span v-if="scope.row.fItemsStatus === 2">卸货中</span>
 | 
	
		
			
				|  |  | -          <span v-if="scope.row.fItemsStatus === 3">已装货</span>
 | 
	
		
			
				|  |  | -          <span v-if="scope.row.fItemsStatus === 4">已出库</span>
 | 
	
		
			
				|  |  | -        </template>
 | 
	
		
			
				|  |  | -      </el-table-column>
 | 
	
		
			
				|  |  | -<!--      <el-table-column-->
 | 
	
		
			
				|  |  | -<!--        v-for="(item, index) in getRowList"-->
 | 
	
		
			
				|  |  | -<!--        :key="index"-->
 | 
	
		
			
				|  |  | -<!--        :label="item.name"-->
 | 
	
		
			
				|  |  | -<!--        :width="item.width"-->
 | 
	
		
			
				|  |  | -<!--        :prop="item.label"-->
 | 
	
		
			
				|  |  | -<!--        align="center"-->
 | 
	
		
			
				|  |  | -<!--        :fixed="item.fixed"-->
 | 
	
		
			
				|  |  | -<!--      />-->
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -      <el-table-column width="220" label="货权方" fixed sortable align="center" prop="fCorpid"/>
 | 
	
		
			
				|  |  | -      <el-table-column label="提单号" sortable width="216" align="center" prop="fMblno" fixed show-overflow-tooltip/>
 | 
	
		
			
				|  |  | -      <el-table-column label="品名" :show-overflow-tooltip="true" fixed align="ceter" prop="fProductName" />
 | 
	
		
			
				|  |  | -      <el-table-column label="品牌" align="center" fixed prop="fMarks" />
 | 
	
		
			
				|  |  | -      <el-table-column label="出库日期" align="center" fixed sortable prop="createTime" style="width: 60%" width="100" show-overflow-tooltip>
 | 
	
		
			
				|  |  | -        <template slot-scope="scope">
 | 
	
		
			
				|  |  | -        <span>{{ parseTime(scope.row.fBsdate, "{y}-{m}-{d}") }}</span>
 | 
	
		
			
				|  |  | -      </template>
 | 
	
		
			
				|  |  | -      </el-table-column>
 | 
	
		
			
				|  |  | -      <el-table-column label="仓库" sortable fixed align="center" prop="fWarehouseid" />
 | 
	
		
			
				|  |  | -      <el-table-column label="计划件数" align="center" prop="fPlanqty" />
 | 
	
		
			
				|  |  | -      <el-table-column label="出库件数" align="center" prop="fQty" />
 | 
	
		
			
				|  |  | -      <el-table-column label="出库毛重(kg)" align="center" prop="fGrossweight" width="100"/>
 | 
	
		
			
				|  |  | -      <el-table-column label="出库净重(kg)" align="center" prop="fNetweight" width="100"/>
 | 
	
		
			
				|  |  | -      <el-table-column label="车号" align="center" prop="fTruckno" width="100"/>
 | 
	
		
			
				|  |  | -      <el-table-column label="司机" align="center" prop="fDriverName" />
 | 
	
		
			
				|  |  | -      <el-table-column label="司机电话" align="center" prop="fDriverTel" width="120" show-overflow-tooltip/>
 | 
	
		
			
				|  |  | -      <el-table-column label="司机身份证" align="center" prop="fDriverIdCar" width="180" show-overflow-tooltip/>
 | 
	
		
			
				|  |  | -      <el-table-column label="业务类别" align="center" prop="fBusinessType" :formatter="fBusinessTypeFormat"/>
 | 
	
		
			
				|  |  | -      <el-table-column width="100" label="费用状态" align="center" prop="fBillstatus">
 | 
	
		
			
				|  |  | -        <template slot-scope="scope">
 | 
	
		
			
				|  |  | -          <span v-if="scope.row.fBillstatus === 1">录入</span>
 | 
	
		
			
				|  |  | -          <span v-if="scope.row.fBillstatus === 2">录入</span>
 | 
	
		
			
				|  |  | -          <span v-if="scope.row.fBillstatus === 3">驳回</span>
 | 
	
		
			
				|  |  | -          <span v-if="scope.row.fBillstatus === 4">请核</span>
 | 
	
		
			
				|  |  | -          <span v-if="scope.row.fBillstatus === 5">审核中</span>
 | 
	
		
			
				|  |  | -          <span v-if="scope.row.fBillstatus === 6">全部入账</span>
 | 
	
		
			
				|  |  | -        </template>
 | 
	
		
			
				|  |  | -      </el-table-column>
 | 
	
		
			
				|  |  | +      <el-table-column
 | 
	
		
			
				|  |  | +        v-for="(item, index) in getRowList"
 | 
	
		
			
				|  |  | +        :key="index"
 | 
	
		
			
				|  |  | +        :label="item.name"
 | 
	
		
			
				|  |  | +        :width="item.width"
 | 
	
		
			
				|  |  | +        :prop="item.label"
 | 
	
		
			
				|  |  | +        align="center"
 | 
	
		
			
				|  |  | +        :fixed="item.fixed"
 | 
	
		
			
				|  |  | +      />
 | 
	
		
			
				|  |  | +<!--      <el-table-column  label="制单人" align="center" prop="createBy" fixed/>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column  label="仓管员" width="100" align="center" sortable prop="fStorekeeper" fixed/>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column width="100" label="出库状态" fixed sortable align="center" prop="fItemsStatus">-->
 | 
	
		
			
				|  |  | +<!--        <template slot-scope="scope">-->
 | 
	
		
			
				|  |  | +<!--          <span v-if="scope.row.fItemsStatus === 1">计划</span>-->
 | 
	
		
			
				|  |  | +<!--          <span v-if="scope.row.fItemsStatus === 2">卸货中</span>-->
 | 
	
		
			
				|  |  | +<!--          <span v-if="scope.row.fItemsStatus === 3">已装货</span>-->
 | 
	
		
			
				|  |  | +<!--          <span v-if="scope.row.fItemsStatus === 4">已出库</span>-->
 | 
	
		
			
				|  |  | +<!--        </template>-->
 | 
	
		
			
				|  |  | +<!--      </el-table-column>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column width="220" label="货权方" fixed sortable align="center" prop="fCorpid"/>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="提单号" sortable width="216" align="center" prop="fMblno" fixed show-overflow-tooltip/>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="品名" :show-overflow-tooltip="true" fixed align="ceter" prop="fProductName" />-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="品牌" align="center" fixed prop="fMarks" />-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="出库日期" align="center" fixed sortable prop="createTime" style="width: 60%" width="100" show-overflow-tooltip>-->
 | 
	
		
			
				|  |  | +<!--        <template slot-scope="scope">-->
 | 
	
		
			
				|  |  | +<!--        <span>{{ parseTime(scope.row.fBsdate, "{y}-{m}-{d}") }}</span>-->
 | 
	
		
			
				|  |  | +<!--      </template>-->
 | 
	
		
			
				|  |  | +<!--      </el-table-column>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="仓库" sortable fixed align="center" prop="fWarehouseid" />-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="计划件数" align="center" prop="fPlanqty" />-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="出库件数" align="center" prop="fQty" />-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="出库毛重(kg)" align="center" prop="fGrossweight" width="100"/>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="出库净重(kg)" align="center" prop="fNetweight" width="100"/>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="车号" align="center" prop="fTruckno" width="100"/>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="司机" align="center" prop="fDriverName" />-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="司机电话" align="center" prop="fDriverTel" width="120" show-overflow-tooltip/>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="司机身份证" align="center" prop="fDriverIdCar" width="180" show-overflow-tooltip/>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column label="业务类别" align="center" prop="fBusinessType" :formatter="fBusinessTypeFormat"/>-->
 | 
	
		
			
				|  |  | +<!--      <el-table-column width="100" label="费用状态" align="center" prop="fBillstatus">-->
 | 
	
		
			
				|  |  | +<!--        <template slot-scope="scope">-->
 | 
	
		
			
				|  |  | +<!--          <span v-if="scope.row.fBillstatus === 1">录入</span>-->
 | 
	
		
			
				|  |  | +<!--          <span v-if="scope.row.fBillstatus === 2">录入</span>-->
 | 
	
		
			
				|  |  | +<!--          <span v-if="scope.row.fBillstatus === 3">驳回</span>-->
 | 
	
		
			
				|  |  | +<!--          <span v-if="scope.row.fBillstatus === 4">请核</span>-->
 | 
	
		
			
				|  |  | +<!--          <span v-if="scope.row.fBillstatus === 5">审核中</span>-->
 | 
	
		
			
				|  |  | +<!--          <span v-if="scope.row.fBillstatus === 6">全部入账</span>-->
 | 
	
		
			
				|  |  | +<!--        </template>-->
 | 
	
		
			
				|  |  | +<!--      </el-table-column>-->
 | 
	
		
			
				|  |  |        <el-table-column
 | 
	
		
			
				|  |  |          label="操作"
 | 
	
		
			
				|  |  |          align="center"
 | 
	
	
		
			
				|  | @@ -3005,127 +3004,134 @@ export default {
 | 
	
		
			
				|  |  |            label: "createBy",
 | 
	
		
			
				|  |  |            name: "制单人",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            surface: "2",
 | 
	
		
			
				|  |  | +          label: "fStorekeeper",
 | 
	
		
			
				|  |  | +          name: "仓管员",
 | 
	
		
			
				|  |  | +          checked: 0,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        {
 | 
	
		
			
				|  |  | +          surface: "3",
 | 
	
		
			
				|  |  |            label: "fItemsStatus",
 | 
	
		
			
				|  |  |            name: "出库状态",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "3",
 | 
	
		
			
				|  |  | +          surface: "4",
 | 
	
		
			
				|  |  |            label: "fCorpid",
 | 
	
		
			
				|  |  |            name: "货权方",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "4",
 | 
	
		
			
				|  |  | +          surface: "5",
 | 
	
		
			
				|  |  |            label: "fMblno",
 | 
	
		
			
				|  |  |            name: "提单号",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "5",
 | 
	
		
			
				|  |  | +          surface: "6",
 | 
	
		
			
				|  |  |            label: "fProductName",
 | 
	
		
			
				|  |  |            name: "品名",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "6",
 | 
	
		
			
				|  |  | +          surface: "7",
 | 
	
		
			
				|  |  |            label: "fMarks",
 | 
	
		
			
				|  |  |            name: "品牌",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "7",
 | 
	
		
			
				|  |  | +          surface: "8",
 | 
	
		
			
				|  |  |            label: "fBsdate",
 | 
	
		
			
				|  |  |            name: "出库日期",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "8",
 | 
	
		
			
				|  |  | +          surface: "9",
 | 
	
		
			
				|  |  |            label: "fWarehouseid",
 | 
	
		
			
				|  |  |            name: "仓库",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "9",
 | 
	
		
			
				|  |  | +          surface: "10",
 | 
	
		
			
				|  |  |            label: "fPlanqty",
 | 
	
		
			
				|  |  |            name: "计划件数",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "10",
 | 
	
		
			
				|  |  | +          surface: "11",
 | 
	
		
			
				|  |  |            label: "fQty",
 | 
	
		
			
				|  |  |            name: "出库件数",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "11",
 | 
	
		
			
				|  |  | +          surface: "12",
 | 
	
		
			
				|  |  |            label: "fGrossweight",
 | 
	
		
			
				|  |  |            name: "出库毛重",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "12",
 | 
	
		
			
				|  |  | +          surface: "13",
 | 
	
		
			
				|  |  |            label: "fNetweight",
 | 
	
		
			
				|  |  |            name: "出库净重",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "13",
 | 
	
		
			
				|  |  | +          surface: "14",
 | 
	
		
			
				|  |  |            label: "fTruckno",
 | 
	
		
			
				|  |  |            name: "车号",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "14",
 | 
	
		
			
				|  |  | +          surface: "15",
 | 
	
		
			
				|  |  |            label: "fDriverName",
 | 
	
		
			
				|  |  |            name: "司机名称",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "15",
 | 
	
		
			
				|  |  | +          surface: "16",
 | 
	
		
			
				|  |  |            label: "fDriverTel",
 | 
	
		
			
				|  |  |            name: "司机电话",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "16",
 | 
	
		
			
				|  |  | +          surface: "17",
 | 
	
		
			
				|  |  |            label: "fDriverIdCar",
 | 
	
		
			
				|  |  |            name: "司机身份证",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        {
 | 
	
		
			
				|  |  | +          surface: "18",
 | 
	
		
			
				|  |  | +          label: "fBusinessType",
 | 
	
		
			
				|  |  | +          name: "业务类别",
 | 
	
		
			
				|  |  | +          checked: 0,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        {
 | 
	
		
			
				|  |  | +          surface: "19",
 | 
	
		
			
				|  |  | +          label: "fBillstatus",
 | 
	
		
			
				|  |  | +          name: "费用状态",
 | 
	
		
			
				|  |  | +          checked: 0,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  | -        // {
 | 
	
		
			
				|  |  | -        //   surface: "17",
 | 
	
		
			
				|  |  | -        //   label: "fBusinessType",
 | 
	
		
			
				|  |  | -        //   name: "业务类别",
 | 
	
		
			
				|  |  | -        //   checked: 0,
 | 
	
		
			
				|  |  | -        //   width: null,
 | 
	
		
			
				|  |  | -        // },
 | 
	
		
			
				|  |  | -        // {
 | 
	
		
			
				|  |  | -        //   surface: "18",
 | 
	
		
			
				|  |  | -        //   label: "fBillstatus",
 | 
	
		
			
				|  |  | -        //   name: "费用状态",
 | 
	
		
			
				|  |  | -        //   checked: 0,
 | 
	
		
			
				|  |  | -        //   width: null,
 | 
	
		
			
				|  |  | -        // },
 | 
	
		
			
				|  |  |        ],
 | 
	
		
			
				|  |  |        getRowList: [
 | 
	
		
			
				|  |  |          {
 | 
	
	
		
			
				|  | @@ -3133,129 +3139,134 @@ export default {
 | 
	
		
			
				|  |  |            label: "createBy",
 | 
	
		
			
				|  |  |            name: "制单人",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          fixed:'fixed',
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  |            surface: "2",
 | 
	
		
			
				|  |  | +          label: "fStorekeeper",
 | 
	
		
			
				|  |  | +          name: "仓管员",
 | 
	
		
			
				|  |  | +          checked: 0,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        {
 | 
	
		
			
				|  |  | +          surface: "3",
 | 
	
		
			
				|  |  |            label: "fItemsStatus",
 | 
	
		
			
				|  |  |            name: "出库状态",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "3",
 | 
	
		
			
				|  |  | +          surface: "4",
 | 
	
		
			
				|  |  |            label: "fCorpid",
 | 
	
		
			
				|  |  |            name: "货权方",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          fixed:'fixed',
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "4",
 | 
	
		
			
				|  |  | +          surface: "5",
 | 
	
		
			
				|  |  |            label: "fMblno",
 | 
	
		
			
				|  |  |            name: "提单号",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "5",
 | 
	
		
			
				|  |  | +          surface: "6",
 | 
	
		
			
				|  |  |            label: "fProductName",
 | 
	
		
			
				|  |  |            name: "品名",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "6",
 | 
	
		
			
				|  |  | +          surface: "7",
 | 
	
		
			
				|  |  |            label: "fMarks",
 | 
	
		
			
				|  |  |            name: "品牌",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "7",
 | 
	
		
			
				|  |  | +          surface: "8",
 | 
	
		
			
				|  |  |            label: "fBsdate",
 | 
	
		
			
				|  |  |            name: "出库日期",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "8",
 | 
	
		
			
				|  |  | +          surface: "9",
 | 
	
		
			
				|  |  |            label: "fWarehouseid",
 | 
	
		
			
				|  |  |            name: "仓库",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "9",
 | 
	
		
			
				|  |  | +          surface: "10",
 | 
	
		
			
				|  |  |            label: "fPlanqty",
 | 
	
		
			
				|  |  |            name: "计划件数",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "10",
 | 
	
		
			
				|  |  | +          surface: "11",
 | 
	
		
			
				|  |  |            label: "fQty",
 | 
	
		
			
				|  |  |            name: "出库件数",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "11",
 | 
	
		
			
				|  |  | +          surface: "12",
 | 
	
		
			
				|  |  |            label: "fGrossweight",
 | 
	
		
			
				|  |  |            name: "出库毛重",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "12",
 | 
	
		
			
				|  |  | +          surface: "13",
 | 
	
		
			
				|  |  |            label: "fNetweight",
 | 
	
		
			
				|  |  |            name: "出库净重",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "13",
 | 
	
		
			
				|  |  | +          surface: "14",
 | 
	
		
			
				|  |  |            label: "fTruckno",
 | 
	
		
			
				|  |  |            name: "车号",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "14",
 | 
	
		
			
				|  |  | +          surface: "15",
 | 
	
		
			
				|  |  |            label: "fDriverName",
 | 
	
		
			
				|  |  |            name: "司机名称",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "15",
 | 
	
		
			
				|  |  | +          surface: "16",
 | 
	
		
			
				|  |  |            label: "fDriverTel",
 | 
	
		
			
				|  |  |            name: "司机电话",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  |          {
 | 
	
		
			
				|  |  | -          surface: "16",
 | 
	
		
			
				|  |  | +          surface: "17",
 | 
	
		
			
				|  |  |            label: "fDriverIdCar",
 | 
	
		
			
				|  |  |            name: "司机身份证",
 | 
	
		
			
				|  |  |            checked: 0,
 | 
	
		
			
				|  |  | -          width: null,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        {
 | 
	
		
			
				|  |  | +          surface: "18",
 | 
	
		
			
				|  |  | +          label: "fBusinessType",
 | 
	
		
			
				|  |  | +          name: "业务类别",
 | 
	
		
			
				|  |  | +          checked: 0,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  | +        },
 | 
	
		
			
				|  |  | +        {
 | 
	
		
			
				|  |  | +          surface: "19",
 | 
	
		
			
				|  |  | +          label: "fBillstatus",
 | 
	
		
			
				|  |  | +          name: "费用状态",
 | 
	
		
			
				|  |  | +          checked: 0,
 | 
	
		
			
				|  |  | +          width: 100,
 | 
	
		
			
				|  |  |          },
 | 
	
		
			
				|  |  | -        // {
 | 
	
		
			
				|  |  | -        //   surface: "17",
 | 
	
		
			
				|  |  | -        //   label: "fBusinessType",
 | 
	
		
			
				|  |  | -        //   name: "业务类别",
 | 
	
		
			
				|  |  | -        //   checked: 0,
 | 
	
		
			
				|  |  | -        //   width: null,
 | 
	
		
			
				|  |  | -        // },
 | 
	
		
			
				|  |  | -        // {
 | 
	
		
			
				|  |  | -        //   surface: "18",
 | 
	
		
			
				|  |  | -        //   label: "fBillstatus",
 | 
	
		
			
				|  |  | -        //   name: "费用状态",
 | 
	
		
			
				|  |  | -        //   checked: 0,
 | 
	
		
			
				|  |  | -        //   width: null,
 | 
	
		
			
				|  |  | -        // },
 | 
	
		
			
				|  |  |        ],
 | 
	
		
			
				|  |  |        allCheck: false,
 | 
	
		
			
				|  |  |        showSetting:false,
 | 
	
	
		
			
				|  | @@ -3989,7 +4000,8 @@ export default {
 | 
	
		
			
				|  |  |            pageNum:1,
 | 
	
		
			
				|  |  |            pageSize:10,
 | 
	
		
			
				|  |  |            fTaskType:Number(fTaskType),
 | 
	
		
			
				|  |  | -          fFleet:this.form.fFleet
 | 
	
		
			
				|  |  | +          fFleet:this.form.fFleet,
 | 
	
		
			
				|  |  | +          fBilltype:'SJCK'
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          this.key_s = kye
 | 
	
		
			
				|  |  |        }else {
 |