123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155 |
- <template>
- <view ref="all-input">
- <view @click='hidden' class='wrap'>
- <view class='title_b'>基本信息</view>
- <view class="c-row ">
- <view class="title">入库类型</view>
- <view class="con-list">
- <view v-if='gridList.serviceManagementType==1'>贸易入库</view>
- <view v-if='gridList.serviceManagementType==3'>收购入库</view>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">仓库</view>
- <view class="con-list">
- {{gridList.warehouseName}}
- </view>
- </view>
- <view v-if='gridList.serviceManagementType==1' class="c-row ">
- <view class="title">任务编号</view>
- <view class="con-list">
- <view >{{gridList.inOutTaskNo}}</view>
- </view>
- </view>
- <view v-if='gridList.serviceManagementType==1&&gridList.inOutType!="移库入库"' class="c-row ">
- <view class="title">合同编号</view>
- <view class="con-list">
- {{gridList.contractNo}}
- </view>
- </view>
- <view v-if='gridList.serviceManagementType==1&&gridList.inOutType=="移库入库"' class="c-row ">
- <view class="title">移库编号</view>
- <view class="con-list">
- {{gridList.contractNo}}
- </view>
- </view>
- <view class="c-row ">
- <view class="title">业务编号</view>
- <view class="con-list">
- {{gridList.qualityNo}}
- </view>
- </view>
- <view v-if='gridList.serviceManagementType==1' class="c-row ">
- <view class="title">成本</view>
- <view class="con-list">
- <view v-if='!coststatus'>{{gridList.cost?gridList.cost:'自动获取,不可编辑'}}</view>
- <view v-if='coststatus'>
- <input v-model='gridList.cost' placeholder="请输入成本" name="input" type="digit"></input>
- </view>
- </view>
- <button class='cu-btn bg-green shadow' @click="changecost">{{costtext}}</button>
- </view>
- <view v-if='gridList.serviceManagementType==1' class="c-row ">
- <view class="title">运费</view>
- <view class="con-list flex">
- <view v-if='!freightstatus'>{{gridList.freight?gridList.freight:'自动获取,不可编辑'}}</view>
- <view v-if='freightstatus'>
- <input v-model='gridList.freight' placeholder="请输入运费" name="input" type="digit"></input>
- </view>
- </view>
- <button class='cu-btn bg-green shadow' @click="changefreight">{{freighttext}}</button>
- </view>
- <view v-if='gridList.serviceManagementType==1' class="c-row ">
- <view class="title">扣款</view>
- <view class="con-list">
- <input v-model='gridList.deductionAmount' placeholder="请输入扣款" name="input" type="digit"></input>
- </view>
- </view>
- <view v-if='gridList.serviceManagementType==1' class="c-row ">
- <view class="title">入库类型</view>
- <view class="con-list">
- {{gridList.inOutType?gridList.inOutType:'自动获取,不可编辑'}}
- </view>
- </view>
- <view v-if='gridList.serviceManagementType==1' class="c-row ">
- <view class="title">入库日期</view>
- <view class="con-list">
- <view @click='show5=true'>{{gridList.inOutDate?gridList.inOutDate:'请选择入库日期'}}</view>
- <u-picker @confirm='inOutDatepicker($event)' :params="params" v-model="show5"
- mode="time">
- </u-picker>
- </view>
- </view>
-
- <view v-if='gridList.serviceManagementType==3' class="c-row ">
- <view class="title">客户</view>
- <view class="con-list">
- <view @click='gocustomer'>
- {{gridList.customerName}}({{gridList.customerPhone}})
- </view>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">车牌号</view>
- <view class="con-list">
- <input v-model='gridList.carNumber' @click.stop="handleShowKeyboard" placeholder="请输入车牌号"
- name="input"></input>
- <master-keyboard ref="keyboard" keyboardtype="car" :randomNumber="true" :newCar="false"
- :defaultValue="gridList.carNumber" @keyboardClick="handleClick"></master-keyboard>
- <!-- <input :disabled='flag==1' v-model='gridList.carNumber' placeholder="请输入车牌号" name="input"></input> -->
- </view>
- </view>
- <!-- <view v-if="gridList.paramType != '1'" class="c-row ">
- <view class="title">扣重比</view>
- <view class="con-list">
- <input :disabled='flag==1' v-model='gridList.buckleWeightRatio' placeholder="请输入扣重比"
- name="input"></input>
- </view>
- </view>
- <view v-else class="c-row ">
- <view class="title">扣杂</view>
- <view class="con-list">
- <input :disabled='flag==1' v-model='gridList.buckleMiscellaneous' placeholder="初检扣杂"
- @input="waterContentChange" name="input"></input>
- <input v-if='flag==0' value='未复检' disabled placeholder="复检扣杂" name="input"></input>
- <input v-else :disabled='flag!=1' v-model='gridList.reBuckleMiscellaneous' placeholder="复检扣杂"
- name="input"></input>
- </view>
- </view> -->
- <view v-if='gridList.serviceManagementType==3' class="c-row ">
- <view class="title">购粮性质</view>
- <view class="con-list">
- <input :disabled='flag==1' v-model='gridList.natureOfGrainPurchase' placeholder="请输入购粮性质"
- name="input"></input>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">仓位号</view>
- <view class="con-list">
- <u-picker :range="warehouseList" range-key="binNumber" @confirm='binNumberpicker($event)'
- v-model="show" mode="selector">
- </u-picker>
- <view v-if='flag!=1' @click='show=true'>{{gridList.binNumber}}</view>
- <view v-else>{{gridList.binNumber}}</view>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">囤位号</view>
- <view class="con-list">
- <input v-model='gridList.storageTagNo' placeholder="请输入囤位号" name="input"></input>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">货名</view>
- <view class="con-list">
- <!-- <view v-if="flag != '0'">
- {{gridList.goodsName}}
- </view> -->
- <view @click='goodsName = true'>{{gridList.goodsName}}</view>
- <u-picker :range="goodsList" range-key="goodsName" @confirm='goodsPicker($event)'
- v-model="goodsName" mode="selector">
- </u-picker>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">类型</view>
- <view class="con-list">
- {{gridList.type}}
- </view>
- </view>
- <view v-if='gridList.serviceManagementType==1' class="c-row ">
- <view class="title">运输方式</view>
- <view class="con-list">
- <view @click='show7=true'>{{gridList.outType?gridList.outType:'请选择运输方式'}}</view>
- <u-picker :range="multiSelector" range-key="name" @confirm='outtypepicker($event,0)' v-model="show7"
- mode="selector">
- </u-picker>
- </view>
- </view>
- <view v-if='gridList.serviceManagementType==3' class="c-row ">
- <view class="title">运输方式</view>
- <view class="con-list">
- <view @click='show8=true'>{{outType?outType:'请选择运输方式'}}</view>
- <u-picker :range="multiSelector1" range-key="name" @confirm='outtypepicker($event,1)' v-model="show8"
- mode="selector">
- </u-picker>
- </view>
- </view>
- <view v-if='gridList.serviceManagementType==1||gridList.serviceManagementType==3&&gridList.outType=="自运"' class="c-row ">
- <view class="title">车队</view>
- <view class="con-list">
- <view @click='show6=true'>{{gridList.fleet?ridList.fleet:'非车队车辆'}}</view>
- <u-picker @confirm='fleetpicker($event)' :range="fleetNameList" range-key="fleetName" v-model="show5"
- mode="selector">
- </u-picker>
- </view>
- </view>
- <view v-if="gridList.outType=='汽运'&&gridList.serviceManagementType==1 ||gridList.outType == '集装箱船'&&gridList.serviceManagementType==1" class="c-row ">
- <view class="title">箱号-1</view>
- <view class="con-list">
- <input v-model='gridList.boxNo' placeholder="请输入箱号" name="input" type="digit"></input>
- </view>
- </view>
- <view v-if="gridList.outType== '汽运'&&gridList.serviceManagementType==1 ||gridList.outType == '集装箱船'&&gridList.serviceManagementType==1" class="c-row ">
- <view class="title">封号-1</view>
- <view class="con-list">
- <input v-model='gridList.titleNo' placeholder="请输入封号" name="input" type="digit"></input>
- </view>
- </view>
- <view v-if="gridList.outType=='汽运'&&gridList.serviceManagementType==1 ||gridList.outType == '集装箱船'&&gridList.serviceManagementType==1" class="c-row ">
- <view class="title">箱号-2</view>
- <view class="con-list">
- <input v-model='gridList.boxNoOther' placeholder="请输入箱号" name="input" type="digit"></input>
- </view>
- </view>
- <view v-if="gridList.outType== '汽运'&&gridList.serviceManagementType==1 ||gridList.outType == '集装箱船'&&gridList.serviceManagementType==1" class="c-row ">
- <view class="title">封号-2</view>
- <view class="con-list">
- <input v-model='gridList.titleNoOther' placeholder="请输入封号" name="input" type="digit"></input>
- </view>
- </view>
- <view v-if="gridList.serviceManagementType==3" class="c-row">
- <view class="title">箱号-1</view>
- <view class="con-list">
- <input v-model='gridList.boxNo' placeholder="请输入箱号" name="input" type="digit"></input>
- </view>
- </view>
- <view v-if="gridList.serviceManagementType==3" class="c-row">
- <view class="title">封号-1</view>
- <view class="con-list">
- <input v-model='gridList.titleNo' placeholder="请输入封号" name="input" type="digit"></input>
- </view>
- </view>
- <view v-if="gridList.serviceManagementType==3" class="c-row">
- <view class="title">箱号-2</view>
- <view class="con-list">
- <input v-model='gridList.boxNoOther' placeholder="请输入箱号" name="input" type="digit"></input>
- </view>
- </view>
- <view v-if="gridList.serviceManagementType==3" class="c-row">
- <view class="title">封号-2</view>
- <view class="con-list">
- <input v-model='gridList.titleNoOther' placeholder="请输入封号" name="input" type="digit"></input>
- </view>
- </view>
- <view v-if="gridList.type == '潮粮'&&gridList.serviceManagementType==3" class="c-row">
- <view class="title">净重单价(元/公斤)</view>
- <view class="con-list">
- <input :disabled='flag==1' v-model='gridList.tidalGrainPrice' disabled placeholder="自动获取,不可编辑"
- name="input"></input>
- </view>
- </view>
- <view v-if="gridList.type == '干粮'&&gridList.serviceManagementType==3" class="c-row">
- <view class="title">干粮单价(元/公斤)</view>
- <view class="con-list">
- <input v-model='gridList.dryGrainPrice' placeholder="请输入干粮单价" name="input"></input>
- </view>
- </view>
- <view class="c-row-fj" v-if="flag==2||flag==1">
- <view style="margin: 0px 0px 30rpx 10rpx;">复检备注</view>
- <textarea class='textarea-style' v-model='gridList.reMemo' placeholder="请输入复检备注"
- maxlength="300"></textarea>
- </view>
- <view class="c-row" v-if="flag==1&&gridList.warehouseName=='鲅鱼圈金信库'">
- <view class="title">车型</view>
- <view class="con-list">
- <view @click='carstatus = true'>{{gridList.carModel?gridList.carModel:'请选择车型'}}</view>
- <u-picker :range="carModeList" range-key="constValue" @confirm='carPicker($event)'
- v-model="carstatus" mode="selector">
- </u-picker>
- </view>
- </view>
- </view>
- <view style='padding-bottom:300rpx;'>
- <view class='wrap'>
- <view style='margin-right:10px;' class='flex justify-between align-item-center'>
- <view class='title_b'>化验信息</view>
- <view class='flex justify-between align-item-center'>补录:<u-switch activeColor="#22C572"
- v-if='flag==0' v-model="value" @change="change"></u-switch>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">等级</view>
- <view class="con-list">
- <u-picker :range="gradeList" range-key="value" @confirm='gradepicker($event)' v-model="show1"
- mode="selector">
- </u-picker>
- <view v-if='flag!=1' @click='show1=true'>{{gridList.grade?gridList.grade:'请选择等级'}}</view>
- <view v-else>{{gridList.grade}}</view>
- <u-picker :range="gradeList" range-key="value" @confirm='gradepicker1($event)' v-model="show2"
- mode="selector">
- </u-picker>
- <view v-if='flag==1' @click='show2=true'>{{gridList.reGrade?gridList.reGrade:'请选择等级'}}</view>
- <view v-else>{{gridList.reGrade}}</view>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">水分(%)</view>
- <view class="con-list">
- <input :disabled='flag==1' v-model='gridList.waterContent' placeholder="初检水分"
- @input="waterContentChange" name="input"></input>
- <input v-if='flag==0' value='未复检' disabled placeholder="复检水分" name="input"></input>
- <input :disabled='flag!=1' v-else v-model='gridList.reWaterContent' placeholder="复检水分"
- name="input"></input>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">容重(克/升)</view>
- <view class="con-list">
- <input :disabled='flag==1' v-model='gridList.bulkDensity' placeholder="请输入容重"
- name="input"></input>
- <input :disabled='flag!=1' v-model='gridList.reBulkDensity' placeholder="请输入容重"
- name="input"></input>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">不完善粒(%)</view>
- <view class="con-list">
- <input :disabled='flag==1' v-model='gridList.imperfectGrain' placeholder="请输入不完整粒占比"
- name="input"></input>
- <input :disabled='flag!=1' v-model='gridList.reImperfectGrain' placeholder="请输入不完整粒占比"
- name="input"></input>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">杂质(%)</view>
- <view class="con-list">
- <input :disabled='flag==1' v-model='gridList.impurity' placeholder="请输入杂质占比"
- name="input"></input>
- <input :disabled='flag!=1' v-model='gridList.reImpurity' placeholder="请输入杂质占比"
- name="input"></input>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">霉变粒(%)</view>
- <view class="con-list">
- <input :disabled='flag==1' v-model='gridList.mildewGrain' placeholder="请输入霉变粒占比"
- name="input"></input>
- <input :disabled='flag!=1' v-model='gridList.reMildewGrain' placeholder="请输入霉变粒占比"
- name="input"></input>
- </view>
- </view>
- <view class="c-row ">
- <view class="title">热损伤(%)</view>
- <view class="con-list">
- <input :disabled='flag==1' v-model='gridList.jiaorenli' placeholder="请输入热损伤占比"
- name="input"></input>
- <input :disabled='flag!=1' v-model='gridList.reJiaorenli' placeholder="请输入热损伤占比"
- name="input"></input>
- <!-- <input v-model='gridList.jiaorenli' @click.stop="handleShowKeyboard1":disabled="true" placeholder="请输入热损伤占比" name="input"></input> -->
- </view>
- </view>
- </view>
- </view>
- <view class="footer">
- <view v-if='flag==1' @click='confirmInfo' class="button">确认初检信息</view>
- <view @click='submit' class="button">提交</view>
- </view>
- <u-modal v-model="isShowAlert" :title-style="{fontSize: '18px',fontWeight:'500'}"
- :content-style="{fontSize: '14px',fontWeight:'400'}" confirm-color='#22C572' confirm-text='确定' title='提示'
- showCancelButton='false' :content="content" @confirm="alertBtn" @cancel="cancelClick"></u-modal>
- <u-popup v-model="isShowPrint" class="popup" @close="close" mode="bottom" border-radius="30" :closeable="true">
- <view class="buns_item">
- <view class="but_css" @click="print">打印小票</view>
- <view class="but_css" @click="close">返回</view>
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- import dragButton from "@/components/drag-button/drag-button.vue";
- import keyboard from "@/components/master-keyboard/master-keyboard.vue";
- import {
- mapState
- } from 'vuex';
- let startY = 0,
- moveY = 0,
- pageAtTop = true;
- export default {
- components: {
- dragButton,
- keyboard
- },
- data() {
- return {
- isShowPrint: false,
- inputShow: false,
- modalName: '',
- mycarStyle: '',
- feild: undefined,
- id: 0,
- show: false,
- show2:false,
- show4:false,
- show5:false,
- show7:false,
- show8:false,
- multiSelector1:[{name:'他运',value:'他运'}],
- outType:'',
- selector: [],
- show1: false,
- goodsName: false,
- carstatus: false,
- params:{year: true,
- month: true,
- day: true,},
- inputContent: '',
- multiSelector: [{
- name: '汽运',
- value: '0',
- },
- {
- name: '火运',
- value: '1',
- },
- {
- name: '集装箱船',
- value: '2',
- },
- {
- name: '散船',
- value: '3',
- },
- ],
- coverTransform: 'translateY(0px)',
- coverTransition: '0s',
- moving: false,
- footprintList: [],
- searchKeyWord: '',
- isVip: false,
- flag: 0,
- freightstatus:false,
- coststatus:false,
- freighttext:'手动填写',
- costtext:'手动填写',
- userInfoTmp: [],
- inputStatus: 'none',
- carInfo: [],
- gridCol: 4,
- pageSize: 10,
- currentPage: 1,
- gridBorder: false,
- headUrl: "../../static/img/myimg/YongHu@3x.png",
- userphone: "",
- username: "请更改昵称",
- gridList: {
- natureOfGrainPurchase: '贸易粮',
- type: '潮粮',
- tidalGrainPrice: '',
- dryGrainPrice: '',
- carNumber: '',
- carModel: '',
- },
- managementType: '',
- warehouseName: '',
- warehouseList: [],
- showTran: true,
- companyId: 1,
- current: 4,
- value: false,
- carModeList: [],
- fleetNameList:[],
- gradeList: [{
- key: 1,
- value: '一等品'
- },
- {
- key: 2,
- value: '二等品'
- },
- {
- key: 3,
- value: '三等品'
- },
- {
- key: 4,
- value: '等外'
- },
- ],
- cangid: '',
- goodsList: [],
- taskNolist:[],
- isShowAlert: false,
- content: '确认初检信息后,初检员不需要再次确认质检信息,是否确定提交?',
- }
- },
- // #ifndef MP
- onNavigationBarButtonTap(e) {
- const index = e.index;
- if (index === 0) {
- this.navTo('/pages/set/set');
- } else if (index === 1) {
- // #ifdef APP-PLUS
- const pages = getCurrentPages();
- const page = pages[pages.length - 1];
- const currentWebview = page.$getAppWebview();
- currentWebview.hideTitleNViewButtonRedDot({
- index
- });
- // #endif
- uni.navigateTo({
- url: '/pages/notice/notice'
- })
- }
- },
- // #endif
- computed: {
- ...mapState(['hasLogin', 'userInfo']),
- // 手机号中间4位加*
- starUserphone() {
- let reg = /^(\d{3})\d{4}(\d{4})$/;
- if (this.userphone) {
- return this.userphone.replace(reg, "$1****$2");
- }
- }
- },
- onLoad(options) {
- this.id = options.id
- this.flag = options.flag
- this.cangid = options.cangid
- this.warehouseName=options.warehouseName
- this.managementType = options.managementType
- console.log(this.flag)
- var that = this
- this.$api.doRequest('get', '/qualityInspectionManagement/api/getQualityInspection', {
- id: this.id
- }).then(res => {
- if (res.data.data) {
- let data = res.data.data
- if (data.supplementaryRecording == 1) {
- that.value = true
- } else {
- that.value = false
- }
- that.gridList = data
-
- that.gridList.reGrade=that.gridList.grade
- that.gridList.reWaterContent=that.gridList.waterContent
- that.gridList.reBulkDensity=that.gridList.bulkDensity
- that.gridList.reImperfectGrain=that.gridList.imperfectGrain
- that.gridList.reImpurity=that.gridList.impurity
- that.gridList.reMildewGrain=that.gridList.mildewGrain
- that.gridList.reJiaorenli=that.gridList.jiaorenli
- that.$api.doRequest('get', '/warehouseBaseInfo/getWarehouse', {
- id: this.cangid
- }).then(res => {
- that.warehouseList = res.data.data.warehousePositionInfoList
- })
- }
- })
- this.$api.doRequest('get', 'commonSysParameter/getInfo', {
- constId: 'QUA1'
- }).then(res => {
- if (res.data.data) {
- that.carModeList = res.data.data
- }
- })
- //质检货名下拉
- this.$api.doRequest('get', '/qualityInspectionManagement/api/goodsName', {
- warehouseId: this.cangid
- }).then(res => {
- if (res.data.data) {
- this.goodsList = res.data.data
- }
- })
- this.gridList.grade = this.gradeList[0].value
- this.gridList.gradeKey = this.gradeList[0].key
- },
- onShow() {
- this.multiSelector1=[]
- this.$api.doRequest('get', '/inOutWarehouseTask/getContractNo', {
- warehouseName:this.warehouseName
- }).then(res => {
- // console.log(res)
- if(res.data.data.contractManagementInfoList){
- for (let i = 0; i < res.data.data.contractManagementInfoList.length; i++) {
- res.data.data.contractMangementInfoList[i].name='自运 ('+
- res.data.data.contractMangementInfoList[i].contractNo+' '+res.data.data.contractMangementInfoList[i].seller+')'
- this.multiSelector1.push(res.data.data.contractManagementInfoList[i])
- }
- }
- // this.taskNolist=res.data.data
- })
- // uni.showLoading({title: '加载中'})
- // this.$api.doRequest('get', '/inOutWarehouseTask/selectInOutWarehouseNo', {
- // flag: 2,
- // warehouseName:this.warehouseName
- // }).then(res => {
- // console.log(res)
- // uni.hideLoading();
- // this.taskNolist=res.data.data
- // })
- let _kh = uni.getStorageSync('isClick')
- if (uni.getStorageSync('checkcustomer') && _kh) {
- let _customerInfo = uni.getStorageSync('checkcustomer')
- if (_customerInfo.shipperName) {
- this.gridList.identityId = _customerInfo.id
- //点击登记客户
- this.gridList.customerName = _customerInfo.shipperName
- this.gridList.customerPhone = _customerInfo.shipperPhone
- this.gridList.carNumber = _customerInfo.carNo
- } else {
- //点击搜索客户
- this.gridList.customerName = _customerInfo.customerName
- this.gridList.customerPhone = _customerInfo.customerPhone
- }
- this.gridList.customerNumberCard = _customerInfo.customerNumberCard
- }
- },
- methods: {
- inOutDatepicker(e){
- this.gridList.inOutDate=e.year+'-'+e.month+'-'+e.day
- console.log(e)
- },
- fleetpicker(e){
- this.gridList.fleet=this.fleetNameList[e[0]].fleetName
- },
- changefreight(){
- this.freightstatus=!this.freightstatus
- if(this.freightstatus){
- this.freighttext='自动获取'
- }else{
- this.freighttext='手动填写'
- }
- },
- changecost(){
- this.coststatus=!this.coststatus
- if(this.coststatus){
- this.costtext='自动获取'
- }else{
- this.costtext='手动填写'
- }
- },
- gocustomer() {
- uni.navigateTo({
- url: '/pages/erpbusiness/customer?cangid=' + this.cangid + '&warehouseName=' + this.gridList
- .warehouseName + '&goodsName=' + this.gridList.goodsName + '&status=edit'
- })
- },
- print() {
- uni.navigateTo({
- url: '/pages/erpbusiness/bleConnect'
- })
- },
- close() {
- this.isShowPrint = false
- uni.navigateBack({})
- },
- // focusConfig(type){
- // console.log('childclick',type)
- // // 0是上一项
- // if(type==0){
- // }else{}
- // },
- hidden() {
- this.$refs.keyboard.open(false)
- },
- carPicker(e) {
- this.gridList.carModel = this.carModeList[e[0]].constValue
- },
- handleShowKeyboard() {
- if (this.flag == 0) {
- if (this.$refs.keyboard.open) {
- this.$refs.keyboard.open(true) //true 键盘显示 false 键盘隐藏
- } else {
- this.$refs.keyboard[0].open(true)
- }
- }
- },
- handleShowKeyboard1() {
- if (this.flag == 0) {
- if (this.$refs.keyboard1.open) {
- this.$refs.keyboard1.open(true) //true 键盘显示 false 键盘隐藏
- } else {
- this.$refs.keyboard1[0].open(true)
- }
- }
- },
- handleClick(e) {
- this.gridList.carNumber = e.value //键盘输入值
- },
- handleClick1(e) {
- this.gridList.jiaorenli = e.value //键盘输入值
- },
- change(e) {
- if (e) {
- this.gridList.supplementaryRecording = 1
- } else {
- this.gridList.supplementaryRecording = 0
- }
- },
- confirmInfo() {
- this.isShowAlert = true
- },
- alertBtn() {
- var that = this
- that.gridList.reWaterContent = that.gridList.waterContent
- if (that.gridList.buckleMiscellaneous) {
- that.gridList.reBuckleMiscellaneous = that.gridList.buckleMiscellaneous
- }
- that.gridList.flag = 1
- this.$api.doRequest('post', '/qualityInspectionManagement/api/editQualityInspection', that.gridList).then(
- res => {
- if (res.data.code == "200") {
- that.$api.doRequest('post', '/qualityInspectionManagement/api/editQualityInspection', {
- id: that.gridList.id,
- flag: 2
- }).then(res => {
- if (res.data.code == "200") {
- that.$api.msg('提交成功!')
- setTimeout(function() {
- uni.navigateBack({})
- }, 1000)
- } else {
- that.$api.msg('提交失败')
- }
- })
- } else {
- that.$api.msg('提交失败')
- }
- })
- },
- waterContentChange() {
- var that = this
- if (this.gridList.goodsName && this.cangid) {
- if (!this.gridList.dryGrainPrice || this.gridList.dryGrainPrice == 0) {
- this.$api.doRequest('get', '/purchasePrice/dryGrainPrice', {
- warehouseId: this.cangid,
- goodsName: this.gridList.goodsName
- }).then(res => {
- that.gridList.dryGrainPrice = res.data.data
- })
- }
- }
- if (this.gridList.goodsName) {
- for (var i = 0; i < this.purchasePriceList.length; i++) {
- if (this.purchasePriceList[i].goodsName == this.gridList.goodsName) {
- this.gridList.buckleWeightRatio = this.purchasePriceList[i].deductWeight
- this.gridList.paramType = this.purchasePriceList[i].paramType
- }
- }
- }
- var numReg = /^[0-9]*$/
- var numRe = new RegExp(numReg)
- //潮粮单价改变事件
- if (
- this.gridList.goodsName &&
- this.gridList.waterContent &&
- this.gridList.grade &&
- numRe.test(this.gridList.waterContent)
- ) {
- this.$api.doRequest('get', '/purchasePrice/tidalGrainPrice', {
- warehouseId: this.cangid,
- goodsName: this.gridList.goodsName,
- waterContent: this.gridList.waterContent,
- grade: this.gridList.grade,
- }).then(res => {
- if (that.gridList.paramType == '1') {
- that.gridList.tidalGrainPrice = parseFloat(parseFloat(res.data.data) - parseFloat(that
- .gridList.buckleMiscellaneous) / 100 * parseFloat(that.gridList
- .dryGrainPrice)).toFixed(4)
- if (!that.gridList.tidalGrainPrice) {
- that.gridList.tidalGrainPrice = ''
- }
- } else {
- that.gridList.tidalGrainPrice = res.data.data
- }
- })
- }
- },
- goodsPicker(e) {
- this.gridList.goodsName = this.goodsList[e[0]].goodsName
- },
- submit() {
- this.gridList.statusFlag=1
- if(this.gridList.serviceManagementType==3){
- if(this.outType){
- this.gridList.outType=this.outType
- }
- }
- this.gridList.flag = this.flag
- // if(this.flag==2){
- // this.gridList.reInspector=this.userInfo.userName
- // }
- var that = this
- if (!this.gridList.qualityNo) {
- this.$api.msg('编号不能为空')
- return
- }
- if (!this.gridList.binNumber) {
- this.$api.msg('仓位不能为空')
- return
- }
- if(this.gridList.s==3){
- if (!this.gridList.customerName) {
- this.$api.msg('客户不能为空')
- return
- }
- }
-
- if (!this.gridList.storageTagNo) {
- this.$api.msg('囤位号不能为空')
- return
- }
- if (this.gridList.storageTagNo.length > 10) {
- this.$api.msg('囤位号不能为空')
- return
- }
- if (!this.gridList.carNumber) {
- this.$api.msg('车牌号不能为空')
- return
- }
- if (this.gridList.carNumber.length > 7) {
- this.$api.msg('车牌号输入错误')
- return
- }
- if (!this.gridList.goodsName) {
- this.$api.msg('货名不能为空')
- return
- }
- if (this.gridList.paramType != 1 && this.gridList.buckleWeightRatio < 0 || this.gridList.paramType != 1 &&
- this.gridList.buckleWeightRatio > 2) {
- this.$api.msg('扣重比输入错误')
- return
- }
- if (
- this.gridList.paramType != 1 && String(this.gridList.buckleWeightRatio).indexOf('.') != -1 &&
- String(this.gridList.buckleWeightRatio).length -
- (String(this.gridList.buckleWeightRatio).indexOf('.') + 1) > 2) {
- this.$api.msg('扣重比输入错误')
- return
- }
- if (this.flag == 0 && this.gridList.paramType == 1 && this.gridList.buckleMiscellaneous < 0 || this.flag ==
- 0 && this.gridList.paramType == 1 && this.gridList.buckleMiscellaneous > 50) {
- this.$api.msg('初检扣杂输入错误')
- return
- }
- if (this.flag == 1 && this.gridList.paramType == 1 && this.gridList.reBuckleMiscellaneous < 0 || this
- .flag == 0 && this.gridList.paramType == 1 && this.gridList.reBuckleMiscellaneous > 50) {
- this.$api.msg('复检扣杂输入错误')
- return
- }
- if (!this.gridList.type) {
- this.$api.msg('类型不能为空')
- return
- }
- if (this.value == false || this.flag == 2) {
- if (!this.gridList.grade) {
- this.$api.msg('等级不能为空')
- return
- }
- if (!this.gridList.impurity) {
- this.$api.msg('杂质不能为空')
- return
- }
- if (!this.gridList.waterContent) {
- this.$api.msg('初检水分不能为空')
- return
- }
- // if (!this.gridList.reWaterContent) {
- // this.$api.msg('复检水分不能为空')
- // return
- // }
- if (!this.gridList.mildewGrain) {
- this.$api.msg('霉变粒不能为空')
- return
- }
- if (!this.gridList.bulkDensity) {
- this.$api.msg('容重不能为空')
- return
- }
- if (!this.gridList.jiaorenli) {
- this.$api.msg('热损伤不能为空')
- return
- }
- if (!this.gridList.imperfectGrain) {
- this.$api.msg('不完整粒不能为空')
- return
- }
- }
- this.gridList.storageNumber = this.gridList.storageTagNo
- that.gridList.warehouseInOutDetail={
- id:that.gridList.warehouseInOutId,
- grade:that.gridList.grade,
- reGrade:that.gridList.grade,
- waterContent:that.gridList.waterContent,
- reWaterContent:that.gridList.reWaterContent,
- imperfectGrain:that.gridList.imperfectGrain,
- reImperfectGrain:that.gridList.reImperfectGrain,
- impurity:that.gridList.impurity,
- reImpurity:that.gridList.reImpurity,
- jiaorenli:that.gridList.jiaorenli,
- reJiaorenli:that.gridList.reJiaorenli,
- bulkDensity:that.gridList.bulkDensity,
- reBulkDensity:that.gridList.reBulkDensity,
- mildewGrain:that.gridList.mildewGrain,
- reMildewGrain:that.gridList.reMildewGrain,
- }
- uni.showModal({
- content: "确定提交质检信息?",
- showCancel: true,
- confirmText: '提交',
- success: function(res) {
- if (res.confirm) {
- that.$api.doRequest('post',
- '/qualityInspectionManagement/api/editQualityInspection', that.gridList)
- .then(res => {
- that.$api.doRequest('post',
- '/warehouseInOutInfo/InOutWarehouse',
- that.gridList)
- .then(res => {
- if (res.data.code == 200) {
- that.$api.msg('编辑质检成功')
- that.gridList.warehouseId = that.cangid
- uni.setStorageSync("quality_print", that.gridList)
- console.log('that.gridList', that.gridList)
- that.isShowPrint = true
- // uni.getStorageSync("depotAcquisition_warehouseName")
- // uni.navigateBack({})
- }
- })
- })
- }
- }
- })
- },
- gradepicker(e) {
- console.log(e)
- // this.$set(this.gradeList,'grade',this.gradeList[e[0]].value)
- this.gridList.grade = this.gradeList[e[0]].value
- this.gridList.gradeKey = this.gradeList[e[0]].key
- this.waterContentChange()
- },
- gradepicker1(e) {
- console.log(e)
- // this.$set(this.gradeList,'grade',this.gradeList[e[0]].value)
- this.gridList.reGrade = this.gradeList[e[0]].value
- this.gridList.reGradeKey = this.gradeList[e[0]].key
- },
- binNumberpicker(e) {
- this.gridList.binNumber = this.warehouseList[e[0]].binNumber
- },
- del(item) {
- this.$api.doRequest('get', '/qualityInspectionManagement/api/deleteQualityInspection', {
- id: item.id
- }).then(res => {
- if (res.data.code == 200) {
- this.$api.msg('删除成功')
- } else {
- this.$api.msg('系统异常,请联系管理员')
- }
- })
- },
- contactUs() {
- const that = this
- uni.makePhoneCall({
- // 手机号
- phoneNumber: '18241771147',
- // 成功回调
- success: (res) => {},
- // 失败回调
- fail: (res) => {}
- });
- },
- loadData() {
- // const that = this
- // if(uni.getStorageSync("PageCur")){
- // that.PageCur = uni.getStorageSync("PageCur");
- // }
- // that.userInfoTmp = uni.getStorageSync("userInfo")
- // uni.showLoading({
- // title: '正在加载',
- // mask:true
- // })
- // that.$api.request('integral', 'getIndexData', failres => {
- // that.$api.msg(failres.errmsg)
- // uni.hideLoading()
- // }).then(res => {
- // let data = res.data
- // uni.setStorageSync("message", data.message);
- // uni.setStorageSync("task", data.task);
- // uni.setStorageSync("contract", data.contract);
- // uni.setStorageSync('showTran', data.showTran);
- // that.showTran = data.showTran
- // that.gridList[4].tips = data.task
- // that.gridList[2].tips = data.contract
- // that.companyId = data.companyId
- // uni.hideLoading()
- // })
- },
- confirm() {
- const that = this
- if (!that.inputContent) {
- that.$api.msg('输入不能为空')
- return
- }
- let obj = {}
- obj[that.feild] = that.inputContent
- that.$api.request('user', 'syncUserInfo', obj).then(res => {
- that.userInfo.nickname = that.inputContent
- that.inputContent = ''
- that.$store.commit('login', that.userInfo)
- })
- },
- cancel() {
- this.inputShow = false
- this.inputStatus = 'none'
- this.genderShow = false
- },
- myAccount() {
- uni.navigateTo({
- url: `/pageA/pages/contract`
- })
- },
- /**
- * 统一跳转接口,拦截未登录路由
- * navigator标签现在默认没有转场动画,所以用view
- */
- navTo(url) {
- if (!this.hasLogin) {
- url = '/pages/public/login';
- }
- uni.navigateTo({
- url
- })
- },
- mycarClick(carNo) {
- this.modalName = null
- uni.navigateTo({
- url: `/pageB/car/mycar_detail?carNo=${carNo}`
- })
- },
- scanCode() {
- uni.scanCode({
- success: function(res) {
- uni.navigateTo({
- url: res.result
- })
- }
- })
- },
- hideModal(e) {
- this.modalName = null
- },
- }
- }
- </script>
- <style lang='scss' scoped>
- .title_b {
- margin: 20rpx 20rpx 0rpx 20rpx;
- padding: 20rpx 10rpx 20rpx 10rpx;
- font-size: 18px;
- font-weight: 550;
- }
- page {
- background: #F5F6FA;
- }
- .wrap {
- padding-bottom: 10px;
- font-size: 14px;
- background: #fff;
- margin: 10px;
- border-radius: 10px;
- input {
- font-size: 14px;
- }
- >.title {
- padding: 10px 16px;
- }
- .b-b:after {
- border-bottom: 1px solid #eee;
- }
- }
- .footer {
- background: #fff;
- position: fixed;
- bottom: 0;
- width: 100%;
- padding: 20px 10px;
- z-index: 10;
- .button {
- background: #22C572;
- width: 90%;
- margin: 20rpx auto;
- padding: 10px;
- color: #fff;
- text-align: center;
- border-radius: 30px;
- }
- }
- .c-row {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- padding: 20rpx 30rpx;
- position: relative;
- }
- .con-list {
- -webkit-box-flex: 1;
- -webkit-flex: 1;
- flex: 1;
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -webkit-flex-direction: column;
- flex-direction: column;
- color: #303133;
- line-height: 40rpx;
- text-align: right;
- padding-right: 20rpx;
- }
- input:disabled {
- color: #ccc;
- }
- .textarea-style {
- border: 1px solid #EEEEEE;
- width: 100%;
- padding: 20rpx;
- border-radius: 20rpx;
- }
- .c-row-fj {
- padding: 20rpx
- }
- .buns_item {
- display: flex;
- padding: 80rpx 0 50rpx 0;
- justify-content: space-around;
- }
- .but_css {
- background: #22C572;
- width: 40%;
- padding: 20rpx;
- color: #fff;
- text-align: center;
- border-radius: 20rpx;
- }
- </style>
|