Issueandreceipt_task_approval.vue 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874
  1. <template>
  2. <view class="warp">
  3. <view class="topInfo">
  4. <view class="topInfo-item">
  5. <view class="flex info">
  6. <view class="logo">
  7. <image src="../../../static/img/reject.png" mode=""
  8. v-if="OutList.taskStatus == '已驳回'||EnterList.taskStatus == '已驳回'" style="height: 40rpx;">
  9. </image><!-- 驳回 -->
  10. <image src="../../../static/img/tongguo.png" mode=""
  11. v-else-if="OutList.taskStatus == '已通过'||EnterList.taskStatus == '已通过'||OutList.taskStatus == '执行中'"
  12. style="height: 40rpx;"></image><!-- 通过 -->
  13. <image src="../../../static/img/daishenhe.png" mode=""
  14. v-else-if="OutList.taskStatus == '审核中'||OutList.taskStatus == '待审核'||EnterList.taskStatus == '待审核'"
  15. style="height: 40rpx;"></image><!-- 待审核 -->
  16. </view>
  17. <view class="infoText" v-if="OutList.taskStatus">{{OutList.taskStatus}}</view>
  18. <view class="infoText" v-else>{{EnterList.taskStatus}}</view>
  19. </view>
  20. <view class="infoData" v-if="OutList.updateDate">{{OutList.updateDate}}</view>
  21. <view class="infoData" v-else>{{EnterList.updateDate}}</view>
  22. </view>
  23. </view>
  24. <view class="content1">
  25. <u-form :model="OutList" ref="uForm">
  26. <u-form-item label="任务类型" prop="inOutType" label-width="140" class="uForm_item">
  27. <u-input v-model="OutList.inOutType" input-align="right" disabled v-if="OutList.inOutType" />
  28. <u-input v-model="EnterList.inOutType" input-align="right" disabled v-else />
  29. </u-form-item>
  30. <view v-if="retreatList.judge == 3">
  31. <!-- 退库 -->
  32. <view class="uForm_item">
  33. <view class="title part2">{{retreatList.inOutType}}</view>
  34. <view class='row'>
  35. <view class="left">编号</view>
  36. <view class="right">退库({{retreatList.inOutTaskNo}}}</view>
  37. </view>
  38. <view class='row'>
  39. <view class="left">仓库</view>
  40. <view class="right">{{retreatList.warehouseName}}</view>
  41. </view>
  42. <view class='row'>
  43. <view class="left">出库类型</view>
  44. <view class="right">{{retreatList.inOutType}}</view>
  45. </view>
  46. <view class='row' v-if="retreatList.inOutType == '移库出库'">
  47. <view class="left">移库任务编号</view>
  48. <view class="right">{{retreatList.moveTaskNo}}</view>
  49. </view>
  50. <view class='row' v-if="retreatList.inOutType != '移库出库'">
  51. <view class="left">合同编号</view>
  52. <view class="right">{{retreatList.contractNo}}</view>
  53. </view>
  54. <view class='row'>
  55. <view class="left">货名</view>
  56. <view class="right">{{retreatList.goodsName}}</view>
  57. </view>
  58. <view class='row'>
  59. <view class="left">重量(吨)</view>
  60. <view class="right">{{retreatList.weight}}</view>
  61. </view>
  62. <view class='row'>
  63. <view class="left">预计出库日期</view>
  64. <view class="right">{{retreatList.predictDate}}</view>
  65. </view>
  66. <view class='row'>
  67. <view class="left">预估运费(元/吨)</view>
  68. <view class="right">{{retreatList.estimatedFreight}}</view>
  69. </view>
  70. <view class='row'>
  71. <view class="left">收货人</view>
  72. <view class="right">{{retreatList.agent}}</view>
  73. </view>
  74. </view>
  75. <view class="uForm_item">
  76. <u-form-item label="品级" prop="grade" label-width="150">
  77. <u-input v-model="retreatList.grade" input-align="right" placeholder="" @click='show=true'
  78. disabled />
  79. <u-picker :range="pjList" range-key="type" @confirm='pjPicker($event)' v-model="show"
  80. mode="selector">
  81. </u-picker>
  82. </u-form-item>
  83. <u-form-item label="容重(克/升)>=" prop="bulkDensity" label-width="190">
  84. <u-input v-model="retreatList.bulkDensity" input-align="right" placeholder="" />
  85. </u-form-item>
  86. <u-form-item label="水分(%)<=" prop="waterContent" label-width="160">
  87. <u-input v-model="retreatList.waterContent" input-align="right" placeholder="" />
  88. </u-form-item>
  89. <u-form-item label="单价(元/吨)" prop="unitPrice" label-width="160">
  90. <u-input v-model="retreatList.unitPrice" input-align="right" placeholder="" />
  91. </u-form-item>
  92. </view>
  93. </view>
  94. <view v-if="OutList.judge == 1">
  95. <view class="uForm_item">
  96. <!-- 出库 -->
  97. <view class="title part2">{{OutList.inOutType}}</view>
  98. <view class='row'>
  99. <view class="left">编号</view>
  100. <view class="right">出库({{OutList.inOutTaskNo}})</view>
  101. </view>
  102. <view class='row'>
  103. <view class="left">仓库</view>
  104. <view class="right">{{OutList.warehouseName}}</view>
  105. </view>
  106. <view class='row'>
  107. <view class="left">出库类型</view>
  108. <view class="right">{{OutList.inOutType}}</view>
  109. </view>
  110. <view class='row' v-if="OutList.inOutType == '移库出库'">
  111. <view class="left">移库任务编号</view>
  112. <view class="right">{{OutList.moveTaskNo}}</view>
  113. </view>
  114. <view class='row' v-if="OutList.inOutType != '移库出库'">
  115. <view class="left">合同编号</view>
  116. <view class="right">{{OutList.contractNo}}</view>
  117. </view>
  118. <view class='row'>
  119. <view class="left">货名</view>
  120. <view class="right">{{OutList.goodsName}}</view>
  121. </view>
  122. <view class='row'>
  123. <view class="left">重量(吨)</view>
  124. <view class="right">{{OutList.weight}}</view>
  125. </view>
  126. <view class='row'>
  127. <view class="left">预计出库日期</view>
  128. <view class="right">{{OutList.predictDate}}</view>
  129. </view>
  130. <view class='row'>
  131. <view class="left">预估运费(元/吨)</view>
  132. <view class="right">{{OutList.estimatedFreight}}</view>
  133. </view>
  134. <view class='row'>
  135. <view class="left">发货人</view>
  136. <view class="right">{{OutList.agent}}</view>
  137. </view>
  138. </view>
  139. <view class="uForm_item">
  140. <u-form-item label="品级" prop="grade" label-width="150" v-if="retreatList.inOutType != '退库'">
  141. <u-input v-model="OutList.grade" input-align="right" placeholder="" @click='show=true'
  142. disabled />
  143. <u-picker :range="pjList" range-key="type" @confirm='pjPicker($event)' v-model="show"
  144. mode="selector"></u-picker>
  145. </u-form-item>
  146. <u-form-item label="容重(克/升)>=" prop="bulkDensity" label-width="190"
  147. v-if="retreatList.inOutType != '退库'">
  148. <u-input v-model="OutList.bulkDensity" input-align="right" placeholder="" />
  149. </u-form-item>
  150. <u-form-item label="水分(%)<=" prop="waterContent" label-width="160"
  151. v-if="retreatList.inOutType != '退库'">
  152. <u-input v-model="OutList.waterContent" input-align="right" placeholder="" />
  153. </u-form-item>
  154. <u-form-item label="单价(元/吨)" prop="unitPrice" label-width="160"
  155. v-if="retreatList.inOutType != '退库'">
  156. <u-input v-model="OutList.unitPrice" input-align="right" placeholder="" />
  157. </u-form-item>
  158. <u-form-item label="业务描述" prop="businessDescribe" label-width="160" label-position="top"
  159. v-if="OutList.inOutType != '移库出库'">
  160. <u-input v-model="OutList.businessDescribe" input-align="left" placeholder="请输入业务描述"
  161. type="textarea" class="textarea" maxlength="150" />
  162. </u-form-item>
  163. <u-form-item v-if="retreatList.inOutType!='退库'" label="仓位号(选填)" prop="binNumber"
  164. label-width="170">
  165. <u-input v-model="OutList.binNumber" input-align="right" placeholder="未指定" />
  166. </u-form-item>
  167. </view>
  168. </view>
  169. <view v-if="EnterList.judge == 2">
  170. <view class="uForm_item">
  171. <!-- 入库 -->
  172. <view class="title part2">{{EnterList.inOutType}}</view>
  173. <view class='row'>
  174. <view class="left">编号</view>
  175. <view class="right">入库({{EnterList.inOutTaskNo}})</view>
  176. </view>
  177. <view class='row'>
  178. <view class="left">仓库</view>
  179. <view class="right">{{EnterList.warehouseName}}</view>
  180. </view>
  181. <view class='row'>
  182. <view class="left">入库类型</view>
  183. <view class="right">{{EnterList.inOutType}}</view>
  184. </view>
  185. <view class='row' v-if="EnterList.inOutType == '移库入库'">
  186. <view class="left">移库任务编号</view>
  187. <view class="right">{{EnterList.moveTaskNo}}</view>
  188. </view>
  189. <view class='row' v-if="EnterList.inOutType != '移库入库'">
  190. <view class="left">合同编号</view>
  191. <view class="right">{{EnterList.contractNo}}</view>
  192. </view>
  193. <view class='row'>
  194. <view class="left">货名</view>
  195. <view class="right">{{EnterList.goodsName}}</view>
  196. </view>
  197. <view class='row'>
  198. <view class="left">重量(吨)</view>
  199. <view class="right">{{EnterList.weight}}</view>
  200. </view>
  201. <view class='row'>
  202. <view class="left">预计入库日期</view>
  203. <view class="right">{{EnterList.predictDate}}</view>
  204. </view>
  205. <view class='row'>
  206. <view class="left">预估运费(元/吨)</view>
  207. <view class="right">{{EnterList.estimatedFreight}}</view>
  208. </view>
  209. <view class='row'>
  210. <view class="left">收货人</view>
  211. <view class="right">{{EnterList.agent}}</view>
  212. </view>
  213. </view>
  214. <view class="uForm_item">
  215. <u-form-item label="品级" prop="grade" label-width="150" v-if="EnterList.inOutType != '移库入库' ">
  216. <u-input v-model="EnterList.grade" input-align="right" placeholder="请选择品级"
  217. @click='show=true' disabled />
  218. <u-picker :range="pjList" range-key="type" @confirm='pjPicker1($event)' v-model="show"
  219. mode="selector">
  220. </u-picker>
  221. </u-form-item>
  222. <u-form-item label="容重(克/升)>=" prop="bulkDensity" label-width="190"
  223. v-if="EnterList.inOutType != '移库入库'">
  224. <u-input v-model="EnterList.bulkDensity" input-align="right" placeholder="请输入容重占比" />
  225. </u-form-item>
  226. <u-form-item label="水分(%)<=" prop="waterContent" label-width="160"
  227. v-if="EnterList.inOutType != '移库入库'">
  228. <u-input v-model="EnterList.waterContent" input-align="right" placeholder="请输入水分占比" />
  229. </u-form-item>
  230. <u-form-item label="单价(元/吨)" prop="unitPrice" label-width="160"
  231. v-if="EnterList.inOutType != '移库入库'">
  232. <u-input v-model="EnterList.unitPrice" input-align="right" placeholder="请输入单价" />
  233. </u-form-item>
  234. <u-form-item label="业务描述" prop="businessDescribe" label-width="160" label-position="top">
  235. <u-input v-model="EnterList.businessDescribe" input-align="left" placeholder="请输入业务描述"
  236. type="textarea" class="textarea" maxlength="150" />
  237. </u-form-item>
  238. <u-form-item v-if="OutList.inOutType!='退库'" label="仓位号(选填)" prop="binNumber" label-width="170">
  239. <u-input v-model="EnterList.binNumber" input-align="right" placeholder="未指定" />
  240. </u-form-item>
  241. </view>
  242. </view>
  243. </u-form>
  244. </view>
  245. <u-popup v-model="show1" mode="center">
  246. <view style="width: 300px;padding: 30rpx 10rpx;border-radius: 20rpx;">
  247. <view class="rejectText">审核意见(驳回)</view>
  248. <u-input v-model="rejectInfo" type="textarea" :border="border" :height="height" :auto-height="autoHeight" class="rejectInfoCss"
  249. placeholder="请输入审核意见" />
  250. <view class="flex">
  251. <u-button @click="show1 = false" type="error" hover-class='none'>取消</u-button>
  252. <u-button @click="rejectSubmit()" type="success">确定</u-button>
  253. </view>
  254. </view>
  255. </u-popup>
  256. <u-popup v-model="show2" mode="center">
  257. <view style="width: 300px;padding: 30rpx 10rpx;border-radius: 20rpx;">
  258. <view class="rejectText">审核意见(通过)</view>
  259. <u-input v-model="rejectInfo1" type="textarea" :border="border" :height="height" :auto-height="autoHeight" class="rejectInfoCss"
  260. placeholder="请输入审核意见" />
  261. <view class="flex">
  262. <u-button @click="show2 = false" type="error" hover-class='none'>取消</u-button>
  263. <u-button @click="passSubmit()" type="success">确定</u-button>
  264. </view>
  265. </view>
  266. </u-popup>
  267. <u-toast ref="uToast" />
  268. <view style='padding:10px;' class='flex bottom-btn'>
  269. <u-button @click='show1 = true' type="error" class="btn1" hover-class='none'>驳回</u-button>
  270. <u-button @click='show2 = true' type="success" class="btn2">通过</u-button>
  271. </view>
  272. </view>
  273. </template>
  274. <script>
  275. import {
  276. mapState
  277. } from 'vuex';
  278. export default {
  279. data() {
  280. return {
  281. height: 200,
  282. autoHeight: true,
  283. border: false,
  284. id: "",
  285. OutList: {}, //出
  286. EnterList: {}, //入
  287. retreatList: {}, //退
  288. type: '移库',
  289. show: false,
  290. show1: false,
  291. show2: false,
  292. rejectInfo: "", //驳回原因
  293. rejectInfo1: "",//通过意见
  294. pjList: [{
  295. type: '一等品'
  296. },
  297. {
  298. type: '二等品'
  299. },
  300. {
  301. type: '三等品'
  302. },
  303. {
  304. type: '等外'
  305. }
  306. ],
  307. }
  308. },
  309. // onReady() {
  310. // this.$refs.uForm.setRules(this.rules);
  311. // },
  312. onLoad(options) {
  313. this.id = options.id
  314. this.getList()
  315. },
  316. computed: {
  317. ...mapState(['hasLogin', 'userInfo']),
  318. },
  319. methods: {
  320. getList() {
  321. this.$api.doRequest('get', '/inOutWarehouseTask/getTask', {
  322. id: this.id
  323. }).then(res => {
  324. if (res.data.code == 200) {
  325. this.$api.doRequest('get', '/inOutWarehouseTask/getInOutWarehouseTask', {
  326. relevanceId: res.data.data.relevanceId
  327. }).then(res => {
  328. if (res.data.code == 200) {
  329. for (let i = 0; i < res.data.data.length; i++) {
  330. if (res.data.data[i].inOutType == "移库出库" || res.data.data[i]
  331. .inOutType == "贸易服务出库" || res.data.data[i].inOutType == "销售出库" ||
  332. res.data.data[i].inOutType == "暂存出库") {
  333. this.OutList = res.data.data[i]
  334. this.OutList.judge = 1
  335. } else if (res.data.data[i].inOutType == "移库入库" || res.data.data[i]
  336. .inOutType == "暂存入库" || res
  337. .data.data[i].inOutType == "采购入库" || res.data.data[i].inOutType ==
  338. "贸易服务入库") {
  339. this.EnterList = res.data.data[i]
  340. this.EnterList.judge = 2
  341. } else if (res.data.data[i].inOutType == "退库") {
  342. this.retreatList = res.data.data[i]
  343. this.retreatList.judge = 3
  344. }
  345. }
  346. }
  347. })
  348. }
  349. })
  350. },
  351. pjPicker(e) {
  352. this.OutList.grade = this.pjList[e[0]].type
  353. this.OutList.gradeKey = e[0] + 1
  354. },
  355. pjPicker1(e) {
  356. this.EnterList.grade = this.pjList[e[0]].type
  357. this.EnterList.gradeKey = e[0] + 1
  358. },
  359. passSubmit() {
  360. if (!this.rejectInfo1) {
  361. this.$api.msg('审核意见不能为空!')
  362. } else {
  363. let that = this
  364. that.show2 = false
  365. uni.showModal({
  366. content: "是否确定通过?",
  367. showCancel: true,
  368. confirmText: '确定',
  369. success: function(res) {
  370. if (res.confirm) {
  371. that.OutList.inOutFlag = 1
  372. that.EnterList.inOutFlag = 2
  373. if (that.OutList.taskTypeKey == 1) {
  374. that.requestadd(that.OutList)
  375. } else if (that.EnterList.taskTypeKey == 2) {
  376. that.requestadd(that.EnterList)
  377. } else if (
  378. that.OutList.taskTypeKey == 3 ||
  379. that.OutList.taskTypeKey == 4
  380. ) {
  381. that.requestadd(that.OutList, 'repetition')
  382. if (!that.deletetask) {
  383. that.requestadd(that.EnterList, 'repetition')
  384. }
  385. }
  386. if (that.retreatList.taskTypeKey == 1 || that.retreatList.taskTypeKey == 2) {
  387. that.requestadd(that.retreatList)
  388. } else if (that.retreatList.taskTypeKey == 3 || that.retreatList.taskTypeKey ==
  389. 4) {
  390. that.requestadd(that.retreatList, 'repetition')
  391. }
  392. }
  393. }
  394. })
  395. }
  396. },
  397. rejectSubmit() {
  398. // (1出库2入库3移库4退库并出库)
  399. if (!this.rejectInfo) {
  400. this.$api.msg('驳回原因不能为空!')
  401. } else {
  402. this.show1 = false
  403. let that = this
  404. uni.showModal({
  405. content: "是否确定驳回?",
  406. showCancel: true,
  407. confirmText: '确定',
  408. success: function(res) {
  409. if (res.confirm) {
  410. if (that.OutList.taskTypeKey == 1) {
  411. that.requestaudit(that.OutList)
  412. } else if (that.OutList.taskTypeKey == 2) {
  413. that.requestaudit(that.OutList)
  414. } else if (
  415. that.OutList.taskTypeKey == 3 ||
  416. that.OutList.taskTypeKey == 4
  417. ) {
  418. that.requestaudit(that.OutList, 'repetition')
  419. if (!that.deletetask) {
  420. that.requestaudit(that.OutList, 'repetition')
  421. }
  422. }
  423. if (that.EnterList.taskTypeKey) {
  424. if (that.EnterList.taskTypeKey == 1 || that.EnterList.taskTypeKey == 2) {
  425. that.requestaudit(that.EnterList)
  426. } else if (that.EnterList.taskTypeKey == 3 || that.EnterList.taskTypeKey ==
  427. 4) {
  428. that.requestaudit(that.EnterList, 'repetition')
  429. }
  430. }
  431. if (that.retreatList.taskTypeKey) {
  432. if (that.retreatList.taskTypeKey == 1 || that.retreatList.taskTypeKey ==
  433. 2) {
  434. that.requestaudit(that.retreatList)
  435. } else if (that.retreatList.taskTypeKey == 3 || that.retreatList
  436. .taskTypeKey == 4) {
  437. that.requestaudit(that.retreatList, 'repetition')
  438. }
  439. }
  440. }
  441. }
  442. })
  443. }
  444. },
  445. requestadd(list, status) {
  446. list.compId = sessionStorage.getItem('ws-pf_compId')
  447. // list.publisher = this.userInfo.userName
  448. uni.showLoading({
  449. title:"审核中"
  450. })
  451. this.$api.doRequest('post', '/inOutWarehouseTask/api/checkOrUpdateInOutTask', list).then(res => {
  452. if (res.data.code == 200) {
  453. this.$api.doRequest('post', '/workflow/api/handle', {
  454. taskId: list.taskId,
  455. approved: true,
  456. auditMind: this.rejectInfo1,
  457. needReapply: false
  458. }).then(res => {
  459. uni.hideLoading()
  460. if (res.data.code == 200) {
  461. this.$api.msg('审核成功!')
  462. setTimeout(function() {
  463. uni.navigateBack()
  464. }, 1000);
  465. }else{
  466. this.$api.msg('审核失败!')
  467. }
  468. }).catch(res => {
  469. uni.hideLoading()
  470. if(res.message){
  471. uni.showToast({
  472. title: res.message,
  473. icon: 'none',
  474. duration: 2000
  475. })
  476. }
  477. else{
  478. uni.showToast({
  479. title: "系统异常,请联系管理员",
  480. icon: 'none',
  481. duration: 2000
  482. })
  483. }
  484. })
  485. }
  486. else{
  487. this.$api.msg('审核失败!')
  488. }
  489. }).catch(res => {
  490. uni.hideLoading()
  491. if(res.message){
  492. uni.showToast({
  493. title: res.message,
  494. icon: 'none',
  495. duration: 2000
  496. })
  497. }
  498. else{
  499. uni.showToast({
  500. title: "系统异常,请联系管理员",
  501. icon: 'none',
  502. duration: 2000
  503. })
  504. }
  505. })
  506. },
  507. requestaudit(list, status) {
  508. list.compId = '2710b21efc1e4393930c5dc800010dc4'
  509. // list.publisher = this.userInfo.userName
  510. this.$api.doRequest('post', '/inOutWarehouseTask/api/checkOrUpdateInOutTask', list).then(res => {
  511. if (res.data.code == 200) {
  512. this.$api.doRequest('post', '/workflow/api/handle', {
  513. taskId: list.taskId,
  514. approved: false,
  515. auditMind: this.rejectInfo,
  516. needReapply: true
  517. }).then(res => {
  518. if (res.data.code == 200) {
  519. this.$api.msg('驳回成功!')
  520. setTimeout(function() {
  521. uni.navigateBack()
  522. }, 1000);
  523. }
  524. })
  525. }
  526. })
  527. },
  528. check() {
  529. // (1出库2入库3移库4退库并出库)taskTypeKey
  530. if(this.OutList.taskTypeKey == 1 || this.OutList.taskTypeKey == 3){
  531. if (!this.OutList.grade) {
  532. this.$api.msg('品级不能为空')
  533. return
  534. }
  535. if (!this.OutList.bulkDensity) {
  536. this.$api.msg('容重不能为空')
  537. return
  538. }
  539. if (this.OutList.bulkDensity < 500 || this.OutList.bulkDensity > 1000) {
  540. this.$api.msg('容重输入错误')
  541. return
  542. }
  543. if (String(this.OutList.bulkDensity).indexOf('.') != -1 && String(this.OutList.bulkDensity).length - (
  544. String(this.OutList.bulkDensity).indexOf('.') + 1) > 0) {
  545. this.$api.msg('容重输入错误')
  546. return
  547. }
  548. if (!this.OutList.waterContent) {
  549. this.$api.msg('水分不能为空')
  550. return
  551. }
  552. if (isNaN(this.OutList.waterContent) ||
  553. (String(this.OutList.waterContent).indexOf('.') != -1 &&
  554. String(this.OutList.waterContent).length -
  555. (String(this.OutList.waterContent).indexOf('.') + 1) >
  556. 2) ||
  557. this.OutList.waterContent < 1 ||
  558. this.OutList.waterContent > 40
  559. ) {
  560. this.$api.msg('水分输入错误!')
  561. return
  562. }
  563. if (!this.OutList.unitPrice) {
  564. this.$api.msg('单价不能为空')
  565. return
  566. }
  567. if (isNaN(this.OutList.unitPrice) ||
  568. (String(this.OutList.unitPrice).indexOf('.') != -1 &&
  569. String(this.OutList.unitPrice).length -
  570. (String(this.OutList.unitPrice).indexOf('.') + 1) >
  571. 2) ||
  572. this.OutList.unitPrice < 1 ||
  573. this.OutList.unitPrice > 10000
  574. ) {
  575. this.$api.msg('单价输入错误!')
  576. return
  577. }
  578. }
  579. if (this.OutList.taskTypeKey == 1) {
  580. if (!this.OutList.businessDescribe) {
  581. this.$api.msg('业务描述不能为空')
  582. return
  583. }
  584. if (this.OutList.businessDescribe.length > 150) {
  585. this.$api.msg('业务描述长度错误')
  586. return
  587. }
  588. }
  589. if (this.EnterList.taskTypeKey ==2 && this.EnterList.judge) {
  590. if (!this.EnterList.grade) {
  591. this.$api.msg('品级不能为空')
  592. return
  593. }
  594. if (!this.EnterList.bulkDensity) {
  595. this.$api.msg('容重不能为空')
  596. return
  597. }
  598. if (this.EnterList.bulkDensity < 500 || this.EnterList.bulkDensity > 1000) {
  599. this.$api.msg('容重输入错误')
  600. return
  601. }
  602. if (String(this.EnterList.bulkDensity).indexOf('.') != -1 && String(this.EnterList.bulkDensity).length - (
  603. String(this.EnterList.bulkDensity).indexOf('.') + 1) > 0) {
  604. this.$api.msg('容重输入错误')
  605. return
  606. }
  607. if (!this.EnterList.waterContent) {
  608. this.$api.msg('水分不能为空')
  609. return
  610. }
  611. if (isNaN(this.EnterList.waterContent) ||
  612. (String(this.EnterList.waterContent).indexOf('.') != -1 &&
  613. String(this.EnterList.waterContent).length -
  614. (String(this.EnterList.waterContent).indexOf('.') + 1) >
  615. 2) ||
  616. this.EnterList.waterContent < 1 ||
  617. this.EnterList.waterContent > 40
  618. ) {
  619. this.$api.msg('水分输入错误!')
  620. return
  621. }
  622. if (!this.EnterList.unitPrice) {
  623. this.$api.msg('单价不能为空')
  624. return
  625. }
  626. if (isNaN(this.EnterList.unitPrice) ||
  627. (String(this.EnterList.unitPrice).indexOf('.') != -1 &&
  628. String(this.EnterList.unitPrice).length -
  629. (String(this.EnterList.unitPrice).indexOf('.') + 1) >
  630. 2) ||
  631. this.EnterList.unitPrice < 1 ||
  632. this.EnterList.unitPrice > 10000
  633. ) {
  634. this.$api.msg('单价输入错误!')
  635. return
  636. }
  637. if (!this.EnterList.businessDescribe) {
  638. this.$api.msg('业务描述不能为空')
  639. return
  640. }
  641. if (this.EnterList.businessDescribe.length > 150) {
  642. this.$api.msg('业务描述长度错误')
  643. return
  644. }
  645. }
  646. if (this.OutList.taskTypeKey == 3) {
  647. if (!this.EnterList.businessDescribe) {
  648. this.$api.msg('业务描述不能为空')
  649. return
  650. }
  651. if (this.EnterList.businessDescribe.length > 150) {
  652. this.$api.msg('业务描述长度错误')
  653. return
  654. }
  655. }
  656. if(this.retreatList.taskTypeKey == 4 && this.retreatList.judge){
  657. if (!this.retreatList.grade) {
  658. this.$api.msg('品级不能为空')
  659. return
  660. }
  661. if (!this.retreatList.bulkDensity) {
  662. this.$api.msg('容重不能为空')
  663. return
  664. }
  665. if (this.retreatList.bulkDensity < 500 || this.retreatList.bulkDensity > 1000) {
  666. this.$api.msg('容重输入错误')
  667. return
  668. }
  669. if (String(this.retreatList.bulkDensity).indexOf('.') != -1 && String(this.retreatList.bulkDensity).length - (
  670. String(this.retreatList.bulkDensity).indexOf('.') + 1) > 0) {
  671. this.$api.msg('容重输入错误')
  672. return
  673. }
  674. if (!this.retreatList.waterContent) {
  675. this.$api.msg('水分不能为空')
  676. return
  677. }
  678. if (isNaN(this.retreatList.waterContent) ||
  679. (String(this.retreatList.waterContent).indexOf('.') != -1 &&
  680. String(this.retreatList.waterContent).length -
  681. (String(this.retreatList.waterContent).indexOf('.') + 1) >
  682. 2) ||
  683. this.retreatList.waterContent < 1 ||
  684. this.retreatList.waterContent > 40
  685. ) {
  686. this.$api.msg('水分输入错误!')
  687. return
  688. }
  689. if (!this.retreatList.unitPrice) {
  690. this.$api.msg('单价不能为空')
  691. return
  692. }
  693. if (isNaN(this.retreatList.unitPrice) ||
  694. (String(this.retreatList.unitPrice).indexOf('.') != -1 &&
  695. String(this.retreatList.unitPrice).length -
  696. (String(this.retreatList.unitPrice).indexOf('.') + 1) >
  697. 2) ||
  698. this.retreatList.unitPrice < 1 ||
  699. this.retreatList.unitPrice > 10000
  700. ) {
  701. this.$api.msg('单价输入错误!')
  702. return
  703. }
  704. if (!this.EnterList.businessDescribe) {
  705. this.$api.msg('业务描述不能为空')
  706. return
  707. }
  708. if (this.EnterList.businessDescribe.length > 150) {
  709. this.$api.msg('业务描述长度错误')
  710. return
  711. }
  712. }
  713. }
  714. }
  715. }
  716. </script>
  717. <style scoped lang="scss">
  718. .content1 {
  719. margin: 10rpx;
  720. padding-bottom: 224rpx;
  721. .title {
  722. height: 70rpx;
  723. line-height: 60rpx;
  724. font-size: 32rpx;
  725. font-weight: 600;
  726. color: #333333;
  727. border-bottom: 2rpx solid #EEEEEE;
  728. }
  729. }
  730. .uForm {
  731. padding: 0 40rpx;
  732. }
  733. .u-form-item {
  734. padding: 0;
  735. }
  736. .bottom-btn {
  737. width: 100%;
  738. position: fixed;
  739. bottom: 0;
  740. display: flex;
  741. z-index: 2;
  742. left: 0;
  743. background-color: #f8f8f8;
  744. flex-direction: column;
  745. .btn1,
  746. .btn2 {
  747. width: 100%;
  748. margin-bottom: 26rpx;
  749. border-radius: 90rpx;
  750. }
  751. .btn1 {
  752. background: white;
  753. color: #00C265;
  754. }
  755. }
  756. .submit {
  757. width: 50%;
  758. background: #22C572;
  759. border-radius: 10rpx;
  760. }
  761. .part2 {
  762. margin-top: 20rpx;
  763. }
  764. .textarea {
  765. border: 1px solid #ccc;
  766. border-radius: 10rpx;
  767. background-color: #F9F9FA;
  768. height: 100px;
  769. }
  770. .row {
  771. display: flex;
  772. justify-content: space-between;
  773. // border-bottom: 1px solid #EEEEEE;
  774. padding: 21rpx 0;
  775. .right,
  776. input {
  777. font-size: 28rpx;
  778. color: #333333;
  779. }
  780. }
  781. //弹出框
  782. // .popup {
  783. // padding: 30rpx;
  784. // border-radius: 20rpx;
  785. // }
  786. // .rejectInfoCss {
  787. // border: 1px solid #ccc;
  788. // border-radius: 10rpx;
  789. // background-color: #F9F9FA;
  790. // margin: 30rpx;
  791. // overflow-y: auto;
  792. // // height: 300rpx;
  793. // background: red;
  794. // }
  795. .uForm_item {
  796. padding: 20rpx;
  797. background-color: #FFFFFF;
  798. margin: 20rpx;
  799. border-radius: 20rpx;
  800. }
  801. .rejectText {
  802. text-align: center;
  803. }
  804. .topInfo {
  805. height: 210rpx;
  806. background: linear-gradient(270deg, #22C572 0%, #34DE8A 100%);
  807. padding: 30rpx;
  808. .topInfo-item {
  809. height: 150rpx;
  810. background-color: #FFFFFF;
  811. border-radius: 20rpx;
  812. padding: 40rpx;
  813. .logo {
  814. width: 40rpx;
  815. height: 40rpx;
  816. margin-top: 8rpx;
  817. }
  818. .infoText {
  819. font-size: 36rpx;
  820. font-weight: 600;
  821. margin-left: 20rpx;
  822. }
  823. .infoData {
  824. color: #878C9C;
  825. font-size: 26rpx;
  826. margin-top: 10rpx;
  827. }
  828. }
  829. }
  830. .rejectInfoCss {
  831. border: 1px solid #ccc;
  832. border-radius: 10rpx;
  833. background-color: #F9F9FA;
  834. // height: 100px;
  835. overflow-y: auto;
  836. margin: 30rpx;
  837. }
  838. .rejectText {
  839. text-align: center;
  840. }
  841. /deep/.u-input__textarea{
  842. height: 300rpx!important;
  843. }
  844. </style>