tranManagementWarehouseInOutTaskEdit.vue 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440
  1. // 编辑出入库任务
  2. <template>
  3. <div class="container">
  4. <el-row>
  5. <el-col :span="12">
  6. <h2 class="bg-left title">编辑出入库任务</h2>
  7. </el-col>
  8. <el-col :span="12" class="bg-right">
  9. <el-button
  10. class="bg-bottom"
  11. type="primary"
  12. size="small"
  13. @click="returnsales()"
  14. ><img
  15. width="6"
  16. height="10"
  17. style="vertical-align: bottom; margin-right: 3px"
  18. src="../../../public/img/lujing.png"
  19. alt=""
  20. />返回</el-button
  21. >
  22. </el-col>
  23. </el-row>
  24. <div class="basicInformation">
  25. <div class="annu">
  26. <el-radio-group @change="tasktypechange" v-model="dataList.taskTypeKey">
  27. <!-- <el-radio label="1" class="a">出库</el-radio>
  28. <el-radio label="2" class="a">入库</el-radio>
  29. <el-radio label="3" class="a">移库</el-radio>
  30. <el-radio label="4" class="a">退库并出库</el-radio> -->
  31. </el-radio-group>
  32. <span class="ziti">任务类型:<b><h1 class="ziti1">{{dataList.inOutType}}</h1></b></span>
  33. </div>
  34. <div class="ding"></div>
  35. <div v-if="dataList.taskTypeKey != 2&&dataList.taskTypeKey != 4" class="center1">
  36. <img
  37. style="position: relative; top: 40px; left: 128px;"
  38. width="19"
  39. height="19"
  40. src="../../../public/img/cangku.png"
  41. alt=""
  42. />
  43. <!--出库=-->
  44. <div class="small-title">
  45. <h3>出库任务({{ inOutTaskNo }})</h3>
  46. </div>
  47. <el-form ref="dataList" :model="dataList" label-width="140px">
  48. <!-- 仓库名 -->
  49. <el-form-item label="仓库名">
  50. <el-select
  51. v-model="dataList.warehouseName"
  52. placeholder="请选择仓库名"
  53. class="typeselect"
  54. @change="selectwarehouseName"
  55. >
  56. <el-option
  57. v-for="item in warehouseNameList"
  58. :key="item.constKey"
  59. :label="item.warehouseName"
  60. :value="item.warehouseName"
  61. />
  62. </el-select>
  63. </el-form-item>
  64. <!-- 出库类型 -->
  65. <el-form-item label="出库类型">
  66. <el-select
  67. :disabled='dataList.taskTypeKey == 3||dataList.taskTypeKey == 4'
  68. v-model="dataList.inOutType"
  69. placeholder="请选择出库类型"
  70. class="typeselect"
  71. @change="selectstorageType"
  72. >
  73. <el-option
  74. v-for="item in storageType"
  75. :key="item.constKey"
  76. v-if="
  77. (dataList.taskTypeKey == 1 &&
  78. item.constValue != '移库出库') ||
  79. (dataList.taskTypeKey == 3 &&
  80. item.constValue == '移库出库') ||
  81. (dataList.taskTypeKey == 4 && item.constValue == '销售出库')
  82. "
  83. :label="item.constValue"
  84. :value="item.constValue"
  85. />
  86. </el-select>
  87. </el-form-item>
  88. <!-- 合同编号 -->
  89. <el-form-item v-if='dataList.taskTypeKey != 3' label="合同编号">
  90. <el-select
  91. @change='changecontract'
  92. v-model="dataList.contractNo"
  93. placeholder="请输入合同编号"
  94. class="typeselect"
  95. >
  96. <el-option
  97. v-for="item in contractNoList"
  98. :key="item.constKey"
  99. :label="item.contractNo"
  100. :value="item.contractNo"
  101. ></el-option>
  102. </el-select>
  103. </el-form-item>
  104. <el-form-item v-if='dataList.taskTypeKey == 3' label="移库任务编号">
  105. <el-select
  106. @change="selectTaskNo"
  107. v-model="dataList.moveTaskNo"
  108. placeholder="请输入移库任务编号"
  109. class="typeselect"
  110. >
  111. <el-option
  112. v-for="item in contractNoList"
  113. :key="item.constKey"
  114. :label="item.contractNo"
  115. :value="item.contractNo"
  116. ></el-option>
  117. </el-select>
  118. </el-form-item>
  119. <!-- 货名 -->
  120. <el-form-item label="货名" class="huom">
  121. <el-select
  122. :disabled='dataList.taskTypeKey != 3'
  123. v-model="dataList.goodsName"
  124. placeholder="货名"
  125. class="huom"
  126. @change="selectgoodsName"
  127. >
  128. <el-option
  129. v-for="item in goodnameList"
  130. :key="item.constKey"
  131. :label="item.constValue"
  132. :value="item.constValue"
  133. ></el-option>
  134. </el-select>
  135. </el-form-item>
  136. <!--重量(吨)-->
  137. <el-form-item label="重量(吨)" span="1" style=" margin-left: 350px; margin-top: -40px" >
  138. <el-input
  139. v-model="dataList.weight"
  140. placeholder="请输入重量"
  141. maxlength="120"
  142. size="small"
  143. class="huom"
  144. />
  145. </el-form-item>
  146. <!-- 品级 -->
  147. <el-form-item label="品级">
  148. <el-select
  149. v-model="dataList.grade"
  150. placeholder=""
  151. class="typeselect"
  152. @change="selectpackingMethod"
  153. >
  154. <el-option
  155. v-for="item in gradeList"
  156. :key="item.constKey"
  157. :label="item.constValue"
  158. :value="item.constValue"
  159. />
  160. </el-select>
  161. </el-form-item>
  162. <!--容重(克/升)>=-->
  163. <el-form-item label="容重(克/升)>=">
  164. <el-input
  165. @input='bulkDensitychange'
  166. v-model="dataList.bulkDensity"
  167. placeholder="请输入容重"
  168. maxlength="120"
  169. size="small"
  170. class="huom"
  171. />
  172. </el-form-item>
  173. <!--水分(%)<=-->
  174. <el-form-item label="水分(%)<=" span="1" style=" margin-left: 350px; margin-top: -40px" >
  175. <el-input
  176. @input='waterContentchange'
  177. v-model="dataList.waterContent"
  178. placeholder="请输入水分占比"
  179. maxlength="120"
  180. size="small"
  181. class="huom"
  182. />
  183. </el-form-item>
  184. <!--单价(元/吨)-->
  185. <el-form-item label="单价(元/吨)" span="1" style=" margin-left: 650px; margin-top: -40px" >
  186. <el-input
  187. @input='unitPricechange'
  188. v-model="dataList.unitPrice"
  189. placeholder="请输入单价"
  190. maxlength="120"
  191. size="small"
  192. class="huom"
  193. />
  194. </el-form-item>
  195. <!--预计出库日期-->
  196. <el-form-item
  197. label="预计出库日期"
  198. span="1"
  199. prop="predictDate"
  200. class="deliverydate"
  201. >
  202. <el-date-picker
  203. v-model="dataList.predictDate"
  204. type="date"
  205. placeholder="请选择预计出库日期"
  206. value-format="yyyy-MM-dd"
  207. />
  208. </el-form-item>
  209. <!--经办人-->
  210. <el-form-item label="出库经办人">
  211. <el-select
  212. v-model="dataList.agent"
  213. placeholder="请选择经办人"
  214. filterable
  215. :filter-method="dataFilter"
  216. @change="selectstaff"
  217. >
  218. <el-option
  219. v-for="item in options"
  220. :key="item.value"
  221. :label="item.staffName"
  222. :value="item.staffName"
  223. />
  224. </el-select>
  225. </el-form-item>
  226. <!--业务描述=-->
  227. <el-form-item label="业务描述" span="1">
  228. <el-input
  229. v-model="dataList.businessDescribe"
  230. placeholder="请输入业务描述,不超过150字"
  231. maxlength="150"
  232. size="large"
  233. class="yewu"
  234. />
  235. </el-form-item>
  236. </el-form>
  237. </div>
  238. <div v-show="dataList.taskTypeKey != 1" class="center1">
  239. <img
  240. style="position: relative; top: 40px; left: 128px;"
  241. width="19"
  242. height="19"
  243. src="../../../public/img/cangku.png"
  244. alt=""
  245. />
  246. <div class="small-title">
  247. <h3>入库任务({{ inOutTaskNo1 }} )</h3>
  248. </div>
  249. <el-form ref="form" :model="form" label-width="140px">
  250. <!-- 仓库名 -->
  251. <el-form-item label="仓库名">
  252. <el-select
  253. v-model="dataList1.warehouseName"
  254. placeholder="请选择仓库名"
  255. class="typeselect"
  256. >
  257. <el-option
  258. v-for="item in warehouseNameList"
  259. :key="item.constKey"
  260. :label="item.warehouseName"
  261. :value="item.warehouseName"
  262. />
  263. </el-select>
  264. </el-form-item>
  265. <!-- 出库类型 -->
  266. <el-form-item label="入库类型">
  267. <el-select
  268. :disabled='dataList.taskTypeKey == 3||dataList.taskTypeKey == 4'
  269. v-model="dataList1.inOutType"
  270. placeholder="请选择入库类型"
  271. class="typeselect"
  272. @change="selectstorageType1"
  273. >
  274. <el-option
  275. v-for="item in storageType1"
  276. :key="item.constKey"
  277. v-if="
  278. (dataList1.taskTypeKey == 2 &&
  279. item.constValue != '移库入库') ||
  280. (dataList1.taskTypeKey == 3 &&
  281. item.constValue == '移库入库') ||
  282. (dataList1.taskTypeKey == 4 && item.constValue == '退库')
  283. "
  284. :label="item.constValue"
  285. :value="item.constValue"
  286. />
  287. </el-select>
  288. </el-form-item>
  289. <!-- 合同编号 -->
  290. <el-form-item v-if='dataList1.taskTypeKey != 3' label="合同编号">
  291. <el-select
  292. @change='changecontract1'
  293. v-model="dataList1.contractNo"
  294. placeholder="请输入合同编号"
  295. class="typeselect"
  296. >
  297. <el-option
  298. v-for="item in contractNoList"
  299. :key="item.constKey"
  300. :label="item.contractNo"
  301. :value="item.contractNo"
  302. ></el-option>
  303. </el-select>
  304. </el-form-item>
  305. <el-form-item v-if='dataList1.taskTypeKey == 3' label="移库任务编号">
  306. <el-select
  307. disabled
  308. v-model="dataList1.moveTaskNo"
  309. placeholder="请输入移库任务编号"
  310. class="typeselect"
  311. >
  312. <el-option
  313. v-for="item in contractNoList"
  314. :key="item.constKey"
  315. :label="item.contractNo"
  316. :value="item.contractNo"
  317. ></el-option>
  318. </el-select>
  319. </el-form-item>
  320. <!-- 货名 -->
  321. <el-form-item label="货名" class="huom">
  322. <el-select
  323. :disabled='dataList.taskTypeKey != 3'
  324. v-model="dataList1.goodsName"
  325. placeholder="货名"
  326. class="huom"
  327. @change="selectgoodsName1"
  328. >
  329. <el-option
  330. v-for="item in goodnameList"
  331. :key="item.constKey"
  332. :label="item.constValue"
  333. :value="item.constValue"
  334. ></el-option>
  335. </el-select>
  336. </el-form-item>
  337. <!--重量(吨)-->
  338. <el-form-item label="重量(吨)" span="1" style=" margin-left: 350px; margin-top: -40px" >
  339. <el-input
  340. @input='weightchange'
  341. v-model="dataList1.weight"
  342. placeholder="请输入重量"
  343. maxlength="120"
  344. size="small"
  345. class="huom"
  346. />
  347. </el-form-item>
  348. <!-- 品级 -->
  349. <el-form-item label="品级">
  350. <el-select
  351. :disabled='dataList.taskTypeKey == 3'
  352. v-model="dataList1.grade"
  353. placeholder=""
  354. class="typeselect"
  355. @change="selectpackingMethod1"
  356. >
  357. <el-option
  358. v-for="item in gradeList"
  359. :key="item.constKey"
  360. :label="item.constValue"
  361. :value="item.constValue"
  362. />
  363. </el-select>
  364. </el-form-item>
  365. <!--容重(克/升)>=-->
  366. <el-form-item label="容重(克/升)>=">
  367. <el-input
  368. @input='bulkDensitychange'
  369. :disabled='dataList.taskTypeKey == 3'
  370. v-model="dataList1.bulkDensity"
  371. placeholder="请输入容重"
  372. maxlength="120"
  373. size="small"
  374. class="huom"
  375. />
  376. </el-form-item>
  377. <!--水分(%)<=-->
  378. <el-form-item label="水分(%)<=" span="1" style=" margin-left: 350px; margin-top: -40px">
  379. <el-input
  380. @input='waterContentchange'
  381. :disabled='dataList.taskTypeKey == 3'
  382. v-model="dataList1.waterContent"
  383. placeholder="请输入水分占比"
  384. maxlength="120"
  385. size="small"
  386. class="huom"
  387. />
  388. </el-form-item>
  389. <!--单价(元/吨)-->
  390. <el-form-item label="单价(元/吨)" span="1" style=" margin-left: 650px; margin-top: -40px" >
  391. <el-input
  392. @input='unitPricechange'
  393. :disabled='dataList.taskTypeKey == 3'
  394. v-model="dataList1.unitPrice"
  395. placeholder="请输入单价"
  396. maxlength="120"
  397. size="small"
  398. class="huom"
  399. />
  400. </el-form-item>
  401. <!--预计出库日期-->
  402. <el-form-item
  403. label="预计入库日期"
  404. span="1"
  405. prop="predictDate"
  406. class="deliverydate"
  407. >
  408. <el-date-picker
  409. v-model="dataList1.predictDate"
  410. type="date"
  411. placeholder="请选择预计入库日期"
  412. value-format="yyyy-MM-dd"
  413. />
  414. </el-form-item>
  415. <!--经办人-->
  416. <el-form-item label="入库经办人">
  417. <el-select
  418. v-model="dataList1.agent"
  419. placeholder="请选择经办人"
  420. filterable
  421. :filter-method="dataFilter"
  422. @change="selectstaff1"
  423. >
  424. <el-option
  425. v-for="item in options"
  426. :key="item.value"
  427. :label="item.staffName"
  428. :value="item.staffName"
  429. />
  430. </el-select>
  431. </el-form-item>
  432. <!--业务描述=-->
  433. <el-form-item label="业务描述">
  434. <el-input
  435. v-model="dataList1.businessDescribe"
  436. placeholder="请输入业务描述,不超过150字"
  437. maxlength="150"
  438. size="large"
  439. />
  440. </el-form-item>
  441. </el-form>
  442. </div>
  443. <div v-if="dataList.taskTypeKey == 4" class="center1">
  444. <!--出库=-->
  445. <div class="small-title">
  446. <img
  447. style="position: relative; top: 40px; left: -22px;"
  448. width="19"
  449. height="19"
  450. src="../../../public/img/cangku.png"
  451. alt=""
  452. />
  453. <h3>出库任务({{ inOutTaskNo }})</h3>
  454. </div>
  455. <el-form ref="dataList" :model="dataList" label-width="140px">
  456. <!-- 仓库名 -->
  457. <el-form-item label="仓库名">
  458. <el-select
  459. v-model="dataList.warehouseName"
  460. placeholder="请选择仓库名"
  461. class="typeselect"
  462. @change="selectwarehouseName"
  463. >
  464. <el-option
  465. v-for="item in warehouseNameList"
  466. :key="item.constKey"
  467. :label="item.warehouseName"
  468. :value="item.warehouseName"
  469. />
  470. </el-select>
  471. </el-form-item>
  472. <!-- 出库类型 -->
  473. <el-form-item label="出库类型">
  474. <el-select
  475. :disabled='dataList.taskTypeKey == 3||dataList.taskTypeKey == 4'
  476. v-model="dataList.inOutType"
  477. placeholder="请选择出库类型"
  478. class="typeselect"
  479. @change="selectstorageType"
  480. >
  481. <el-option
  482. v-for="item in storageType"
  483. :key="item.constKey"
  484. v-if="
  485. (dataList.taskTypeKey == 1 &&
  486. item.constValue != '移库出库') ||
  487. (dataList.taskTypeKey == 3 &&
  488. item.constValue == '移库出库') ||
  489. (dataList.taskTypeKey == 4 && item.constValue == '销售出库')
  490. "
  491. :label="item.constValue"
  492. :value="item.constValue"
  493. />
  494. </el-select>
  495. </el-form-item>
  496. <!-- 合同编号 -->
  497. <el-form-item v-if='dataList.taskTypeKey != 3' label="合同编号">
  498. <el-select
  499. @change='changecontract'
  500. v-model="dataList.contractNo"
  501. placeholder="请输入合同编号"
  502. class="typeselect"
  503. >
  504. <el-option
  505. v-for="item in contractNoList"
  506. :key="item.constKey"
  507. :label="item.contractNo"
  508. :value="item.contractNo"
  509. ></el-option>
  510. </el-select>
  511. </el-form-item>
  512. <el-form-item v-if='dataList.taskTypeKey == 3' label="移库任务编号">
  513. <el-select
  514. @change="selectTaskNo"
  515. v-model="dataList.moveTaskNo"
  516. placeholder="请输入移库任务编号"
  517. class="typeselect"
  518. >
  519. <el-option
  520. v-for="item in contractNoList"
  521. :key="item.constKey"
  522. :label="item.contractNo"
  523. :value="item.contractNo"
  524. ></el-option>
  525. </el-select>
  526. </el-form-item>
  527. <!-- 货名 -->
  528. <el-form-item label="货名" class="huom" >
  529. <el-select
  530. :disabled='dataList.taskTypeKey != 3'
  531. v-model="dataList.goodsName"
  532. placeholder="货名"
  533. class="huom"
  534. @change="selectgoodsName"
  535. >
  536. <el-option
  537. v-for="item in goodnameList"
  538. :key="item.constKey"
  539. :label="item.constValue"
  540. :value="item.constValue"
  541. ></el-option>
  542. </el-select>
  543. </el-form-item>
  544. <!--重量(吨)-->
  545. <el-form-item label="重量(吨)" span="1" style=" margin-left: 350px; margin-top: -40px">
  546. <el-input
  547. :disabled='dataList.taskTypeKey == 4'
  548. v-model="dataList.weight"
  549. placeholder="请输入重量"
  550. maxlength="120"
  551. size="small"
  552. class="huom"
  553. />
  554. </el-form-item>
  555. <!-- 品级 -->
  556. <el-form-item label="品级">
  557. <el-select
  558. :disabled='dataList.taskTypeKey == 3||dataList.taskTypeKey == 4'
  559. v-model="dataList.grade"
  560. placeholder=""
  561. class="typeselect"
  562. @change="selectpackingMethod"
  563. >
  564. <el-option
  565. v-for="item in gradeList"
  566. :key="item.constKey"
  567. :label="item.constValue"
  568. :value="item.constValue"
  569. />
  570. </el-select>
  571. </el-form-item>
  572. <!--容重(克/升)>=-->
  573. <el-form-item label="容重(克/升)>=">
  574. <el-input
  575. :disabled='dataList.taskTypeKey == 3||dataList.taskTypeKey == 4'
  576. v-model="dataList.bulkDensity"
  577. placeholder="请输入容重"
  578. maxlength="120"
  579. size="small"
  580. class="huom"
  581. />
  582. </el-form-item>
  583. <!--水分(%)<=-->
  584. <el-form-item label="水分(%)<=" span="1" style=" margin-left: 350px; margin-top: -40px">
  585. <el-input
  586. :disabled='dataList.taskTypeKey == 3||dataList.taskTypeKey == 4'
  587. v-model="dataList.waterContent"
  588. placeholder="请输入水分占比"
  589. maxlength="120"
  590. size="small"
  591. class="huom"
  592. />
  593. </el-form-item>
  594. <!--单价(元/吨)-->
  595. <el-form-item label="单价(元/吨)" span="1" style=" margin-left: 650px; margin-top: -40px">
  596. <el-input
  597. :disabled='dataList.taskTypeKey == 3||dataList.taskTypeKey == 4'
  598. v-model="dataList.unitPrice"
  599. placeholder="请输入单价"
  600. maxlength="120"
  601. size="small"
  602. class="huom"
  603. />
  604. </el-form-item>
  605. <!--预计出库日期-->
  606. <el-form-item
  607. label="预计出库日期"
  608. span="1"
  609. prop="predictDate"
  610. class="deliverydate"
  611. >
  612. <el-date-picker
  613. v-model="dataList.predictDate"
  614. type="date"
  615. placeholder="请选择预计出库日期"
  616. value-format="yyyy-MM-dd"
  617. />
  618. </el-form-item>
  619. <!--经办人-->
  620. <el-form-item label="出库经办人">
  621. <el-select
  622. v-model="dataList.agent"
  623. placeholder="请选择经办人"
  624. filterable
  625. :filter-method="dataFilter"
  626. @change="selectstaff"
  627. >
  628. <el-option
  629. v-for="item in options"
  630. :key="item.value"
  631. :label="item.staffName"
  632. :value="item.staffName"
  633. />
  634. </el-select>
  635. </el-form-item>
  636. <!--业务描述=-->
  637. <el-form-item label="业务描述">
  638. <el-input
  639. v-model="dataList.businessDescribe"
  640. placeholder="请输入业务描述,不超过150字"
  641. maxlength="150"
  642. size="large"
  643. />
  644. </el-form-item>
  645. </el-form>
  646. </div>
  647. </div>
  648. <!-- 提交 -->
  649. <div style="text-align: right; padding: 10px" class="center">
  650. <el-button class="bg-bottom" type="primary" size="small" @click="submit()"
  651. >提交</el-button
  652. >
  653. </div>
  654. </div>
  655. </div>
  656. </template>
  657. <script>
  658. import {
  659. getwarehousename,
  660. xialaNo,
  661. addoreditoutput,
  662. outexamine,
  663. getGoodsName
  664. } from '@/model/tasksport/index'
  665. import { packList } from '@/model/contarct/index'
  666. import { pullDown, getstaff } from '@/model/warehouse/index'
  667. import { downloadFile } from '@/utils/batchDown'
  668. import Pagination from '@/components/Pagination'
  669. import { mapActions, mapGetters, mapState } from 'vuex'
  670. import WsUpload from '@/components/WsUpload'
  671. // import { dayjs, fmoney, EventBus } from 'base-core-lib'
  672. import { dayjs, EventBus } from 'base-core-lib'
  673. export default {
  674. name: 'viewSpareMoney',
  675. components: {
  676. WsUpload,
  677. Pagination,
  678. },
  679. watch: {
  680. // vesselId(val) {
  681. // this.getList()
  682. // },
  683. isShow(val) {
  684. this.showType = val
  685. },
  686. },
  687. computed: {
  688. ...mapGetters(['deptBudgetList']),
  689. },
  690. data() {
  691. return {
  692. //弹出框
  693. dialogViewSpareMoney: false,
  694. dialogApproveFormVisible: false,
  695. // 船舶类型
  696. monetaryKey: null,
  697. // 表格显示数据
  698. tableDate: [],
  699. // 是否显示
  700. showType: true,
  701. disabled:false,
  702. // 年
  703. year: '',
  704. contractNoList: [],
  705. deptBudgetTotal: 0,
  706. readonly: true,
  707. currentPage: 1,
  708. pageSize: 10,
  709. searchType: 1,
  710. searchKeyWord: '',
  711. radio: '1',
  712. contractType: 2,
  713. startDate: null,
  714. endDate: null,
  715. goodnameList: [],
  716. checked: true,
  717. form: {},
  718. staffList: [],
  719. options: [],
  720. storageType: [],
  721. storageType1: [],
  722. outContractNo: [],
  723. // 提交类型
  724. submitType: true,
  725. status: [],
  726. warehouseNameList: [],
  727. warehouseNameList1: [],
  728. appendixIdsAdd: '',
  729. uploadSuccess: {},
  730. warehouseInOutDetail: {},
  731. onChange: {},
  732. deptBudgetList1: [],
  733. gradeList: [],
  734. rules: {
  735. netWeight: [
  736. {
  737. required: true,
  738. type: 'number',
  739. message: '请输入活动名称',
  740. trigger: 'blur',
  741. },
  742. ],
  743. },
  744. size: 10,
  745. compId: sessionStorage.getItem('ws-pf_compId'),
  746. deptCircularPage: {},
  747. packtypeList: {},
  748. date: {
  749. year: dayjs().format('YYYY'),
  750. month: dayjs().format('MM'),
  751. },
  752. contractList: [],
  753. inOutTaskNo: '',
  754. inOutTaskNo1: '',
  755. dataList: { taskTypeKey: '1' },
  756. dataList1: { taskTypeKey: '1' },
  757. historyList: [],
  758. pickerBeginDateBefore: {
  759. disabledDate: (time) => {
  760. return time.getTime() > Date.now()
  761. },
  762. },
  763. accessoryTFs: false,
  764. }
  765. },
  766. activated() {
  767. this.getList()
  768. },
  769. methods: {
  770. //返回按钮
  771. revert() {
  772. this.$router.go(-1)
  773. },
  774. returnsales() {
  775. this.$router.push({ path: 'tranManagementWarehouseInOutTask' })
  776. },
  777. // 获取当前年月日
  778. getdate() {
  779. var date = new Date()
  780. var year = date.getFullYear() //获取完整的年份(4位)
  781. var mouth = date.getMonth() + 1 //获取当前月份(0-11,0代表1月)
  782. var datetime = date.getDate() //获取当前日(1-31)
  783. if (mouth < 10) {
  784. mouth = '0' + mouth
  785. }
  786. if (datetime < 10) {
  787. datetime = '0' + datetime
  788. }
  789. return year + mouth + datetime
  790. },
  791. // 随机验证码
  792. verifyinit() {
  793. var arr = []
  794. for (var i = 48; i < 123; i++) {
  795. if (i > 57 && i < 65) continue
  796. if (i > 90 && i < 97) continue
  797. arr.push(String.fromCharCode(i))
  798. }
  799. arr.sort(function () {
  800. return Math.random() - 0.5
  801. })
  802. arr.length = 4
  803. return arr.join('')
  804. },
  805. selectTaskNo(e){
  806. if(this.dataList.taskTypeKey==3){
  807. this.dataList1.moveTaskNo=e
  808. }
  809. },
  810. dataFilter(val) {
  811. // console.log(val,"名")
  812. this.deptBudgetList.staffList = val
  813. if (val) {
  814. //val存在
  815. this.options = this.staffList.filter((item) => {
  816. if (
  817. !!~item.staffName.indexOf(val) ||
  818. !!~item.staffName.toUpperCase().indexOf(val.toUpperCase())
  819. ) {
  820. return true
  821. }
  822. })
  823. } else {
  824. //val为空时,还原数组
  825. this.options = this.staffList
  826. }
  827. },
  828. weightchange(e){
  829. if(this.dataList.taskTypeKey==4){
  830. this.$set(this.dataList,'weight',e)
  831. }
  832. },
  833. bulkDensitychange(e){
  834. if(this.dataList.taskTypeKey==4){
  835. this.$set(this.dataList,'bulkDensity',e)
  836. }else if(this.dataList1.taskTypeKey==3){
  837. this.$set(this.dataList1,'bulkDensity',e)
  838. }
  839. },
  840. waterContentchange(e){
  841. if(this.dataList.taskTypeKey==4){
  842. this.$set(this.dataList,'waterContent',e)
  843. }else if(this.dataList1.taskTypeKey==3){
  844. this.$set(this.dataList1,'waterContent',e)
  845. }
  846. },
  847. unitPricechange(e){
  848. if(this.dataList.taskTypeKey==4){
  849. this.$set(this.dataList,'unitPrice',e)
  850. }else if(this.dataList1.taskTypeKey==3){
  851. this.$set(this.dataList1,'unitPrice',e)
  852. }
  853. },
  854. changecontract(e){
  855. if(this.dataList.taskTypeKey!=3){
  856. for (let i = 0; i < this.contractNoList.length; i++) {
  857. if(this.contractNoList[i].contractNo==e){
  858. getGoodsName({ contractId:this.contractNoList[i].id,contractNo:this.contractNoList[i].contractNo}) .toPromise()
  859. .then((response) => {
  860. this.$set(this.dataList,'goodsName',response.goodsName)
  861. this.$set(this.dataList,'goodsNameKey',response.goodsNameKey)
  862. this.$set(this.dataList,'grade',response.grade)
  863. this.$set(this.dataList,'gradeKey',response.gradeKey)
  864. this.$set(this.dataList,'waterContent',response.waterContent)
  865. this.$set(this.dataList,'bulkDensity',response.bulkDensity)
  866. this.$set(this.dataList,'weight',response.weight)
  867. this.$set(this.dataList,'unitPrice',response.unitContractPrice)
  868. })
  869. }
  870. }
  871. }
  872. },
  873. changecontract1(e){
  874. if(this.dataList1.taskTypeKey!=3){
  875. for (let i = 0; i < this.contractNoList.length; i++) {
  876. if(this.contractNoList[i].contractNo==e){
  877. getGoodsName({ contractId:this.contractNoList[i].id,contractNo:this.contractNoList[i].contractNo}) .toPromise()
  878. .then((response) => {
  879. this.$set(this.dataList1,'goodsName',response.goodsName)
  880. this.$set(this.dataList1,'goodsNameKey',response.goodsNameKey)
  881. this.$set(this.dataList1,'grade',response.grade)
  882. this.$set(this.dataList1,'gradeKey',response.gradeKey)
  883. this.$set(this.dataList1,'waterContent',response.waterContent)
  884. this.$set(this.dataList1,'bulkDensity',response.bulkDensity)
  885. this.$set(this.dataList1,'weight',response.weight)
  886. this.$set(this.dataList1,'unitPrice',response.unitContractPrice)
  887. })
  888. }
  889. }
  890. }
  891. },
  892. selectstaff(e) {
  893. for (var i = 0; i < this.staffList.length; i++) {
  894. if (this.staffList[i].staffName == e) {
  895. this.dataList.agentKey = this.staffList[i].staffId
  896. }
  897. }
  898. },
  899. selectstaff1(e) {
  900. for (var i = 0; i < this.staffList.length; i++) {
  901. if (this.staffList[i].staffName == e) {
  902. this.dataList1.agentKey = this.staffList[i].staffId
  903. }
  904. }
  905. },
  906. requestadd(list, status) {
  907. list.compId = sessionStorage.getItem('ws-pf_compId')
  908. list.publisher =
  909. sessionStorage.getItem('ws-pf_roleName') +
  910. sessionStorage.getItem('ws-pf_staffName')
  911. addoreditoutput(list)
  912. .toPromise()
  913. .then((response) => {
  914. this.$message.success('添加成功')
  915. this.$router.push({ path: 'tranManagementWarehouseInOutTask' })
  916. })
  917. },
  918. //提交按钮
  919. submit() {
  920. this.dataList.inOutFlag=1
  921. this.dataList1.inOutFlag=2
  922. if (this.dataList.taskTypeKey == 1) {
  923. this.dataList.inOutTaskNo = this.inOutTaskNo
  924. this.requestadd(this.dataList)
  925. } else if (this.dataList1.taskTypeKey == 2) {
  926. this.dataList1.inOutTaskNo = this.inOutTaskNo1
  927. this.requestadd(this.dataList1)
  928. } else if (
  929. this.dataList.taskTypeKey == 3 ||
  930. this.dataList.taskTypeKey == 4
  931. ) {
  932. this.dataList.inOutTaskNo = this.inOutTaskNo
  933. this.dataList.relevanceId = this.GetRandomNum(100000, 999999)
  934. this.requestadd(this.dataList, 'repetition')
  935. this.dataList1.inOutTaskNo = this.inOutTaskNo1
  936. this.dataList1.relevanceId = this.dataList.relevanceId
  937. this.requestadd(this.dataList1, 'repetition')
  938. }
  939. },
  940. selectwarehouseName() {},
  941. tarechange(e) {
  942. if (this.dataList.grossWeight && this.dataList.tare) {
  943. this.dataList.netWeight = Number(
  944. this.dataList.grossWeight - this.dataList.tare
  945. )
  946. }
  947. },
  948. grossWeightchange(e) {
  949. if (this.dataList.grossWeight && this.dataList.tare) {
  950. this.dataList.netWeight = Number(
  951. this.dataList.grossWeight - this.dataList.tare
  952. )
  953. }
  954. },
  955. selectgoodsName(e) {
  956. for (var i = 0; i < this.goodnameList.length; i++) {
  957. if (this.goodnameList[i].constValue == e) {
  958. this.dataList.goodsNameKey = this.goodnameList[i].constKey
  959. }
  960. }
  961. },
  962. selectgoodsName1(e) {
  963. for (var i = 0; i < this.goodnameList.length; i++) {
  964. if (this.goodnameList[i].constValue == e) {
  965. this.dataList1.goodsNameKey = this.goodnameList[i].constKey
  966. }
  967. }
  968. },
  969. selectpackingMethod(e) {
  970. for (var i = 0; i < this.gradeList.length; i++) {
  971. if (this.gradeList[i].constValue == e) {
  972. this.dataList.gradeKey = this.gradeList[i].constKey
  973. if(this.dataList.taskTypeKey==3){
  974. this.$set(this.dataList1,'grade',e)
  975. this.$set(this.dataList1,'gradeKey',this.gradeList[i].constKey)
  976. }
  977. }
  978. }
  979. },
  980. selectpackingMethod1(e) {
  981. for (var i = 0; i < this.gradeList.length; i++) {
  982. if (this.gradeList[i].constValue == e) {
  983. this.dataList1.packingMethodKey = this.gradeList[i].constKey
  984. if(this.dataList1.taskTypeKey==4){
  985. this.$set(this.dataList,'grade',e)
  986. this.$set(this.dataList,'gradeKey',this.gradeList[i].constKey)
  987. }
  988. }
  989. }
  990. },
  991. selectstorageType(e) {
  992. for (var i = 0; i < this.storageType.length; i++) {
  993. if (this.storageType[i].constValue == e) {
  994. this.dataList.inOutTypeKey = this.storageType[i].constKey
  995. }
  996. }
  997. },
  998. selectstorageType1(e) {
  999. for (var i = 0; i < this.storageType1.length; i++) {
  1000. if (this.storageType1[i].constValue == e) {
  1001. this.dataList1.inOutTypeKey = this.storageType1[i].constKey
  1002. }
  1003. }
  1004. },
  1005. handleClose() {
  1006. this.accessoryTFs = false
  1007. },
  1008. handleSizeChange(val) {
  1009. console.log(`每页 ${val} 条`)
  1010. this.pageSize = val
  1011. this.getList()
  1012. },
  1013. businessDescriptionchange(e) {
  1014. console.log(e)
  1015. },
  1016. handleCurrentChange(val) {
  1017. this.currentPage = val
  1018. console.log(`当前页: ${val}`)
  1019. this.getList()
  1020. },
  1021. tasknumber() {
  1022. if (this.dataList.taskTypeKey == 1) {
  1023. this.inOutTaskNo = 'CK' + this.getdate() + this.verifyinit()
  1024. } else if (this.dataList.taskTypeKey == 2) {
  1025. this.inOutTaskNo1 = 'RK' + this.getdate() + this.verifyinit()
  1026. } else if (this.dataList.taskTypeKey == 3) {
  1027. var random=this.getdate() + this.verifyinit()
  1028. this.inOutTaskNo = 'YKC' + random
  1029. this.inOutTaskNo1 = 'YKR' + random
  1030. } else if (this.dataList.taskTypeKey == 4) {
  1031. var random=this.getdate() + this.verifyinit()
  1032. this.inOutTaskNo = 'TCC' + random
  1033. this.inOutTaskNo1 = 'TCR' + random
  1034. }
  1035. },
  1036. tasktypechange(e) {
  1037. if (!this.$route.query.relevanceId) {
  1038. this.tasknumber()
  1039. }
  1040. this.dataList1.taskTypeKey = e
  1041. if(this.dataList.taskTypeKey==1){
  1042. this.dataList.inOutType='销售出库'
  1043. this.dataList.inOutTypeKey='1'
  1044. }
  1045. if(this.dataList1.taskTypeKey==2){
  1046. this.dataList1.inOutType='采购入库'
  1047. this.dataList1.inOutTypeKey='1'
  1048. }
  1049. else if(this.dataList1.taskTypeKey==3){
  1050. this.disabled=true
  1051. this.dataList1.inOutType='移库入库'
  1052. this.dataList1.inOutTypeKey='3'
  1053. this.dataList.inOutType='移库出库'
  1054. this.dataList.inOutTypeKey='3'
  1055. }else if(this.dataList1.taskTypeKey==4){
  1056. this.disabled=true
  1057. this.dataList1.inOutType='退库'
  1058. this.dataList1.inOutTypeKey='6'
  1059. this.dataList.inOutType='销售出库'
  1060. this.dataList.inOutTypeKey='1'
  1061. }
  1062. },
  1063. GetRandomNum(Min, Max) {
  1064. var Range = Max - Min
  1065. var Rand = Math.random()
  1066. return Min + Math.round(Rand * Range)
  1067. },
  1068. getList() {
  1069. if (this.$route.query.relevanceId) {
  1070. outexamine({ relevanceId: this.$route.query.relevanceId })
  1071. .toPromise()
  1072. .then((response) => {
  1073. if (response.length > 1) {
  1074. this.dataList = response[0]
  1075. this.dataList1 = response[1]
  1076. } else {
  1077. this.dataList = response[0]
  1078. }
  1079. })
  1080. } else {
  1081. this.tasknumber()
  1082. this.$set(this.dataList,'inOutType','销售出库')
  1083. this.$set(this.dataList,'inOutTypeKey','1')
  1084. this.$set(this.dataList,'goodsName','玉米')
  1085. this.$set(this.dataList,'goodsNameKey','1')
  1086. this.$set(this.dataList,'grade','一等品')
  1087. this.$set(this.dataList,'gradeKey','1')
  1088. this.$set(this.dataList1,'goodsName','玉米')
  1089. this.$set(this.dataList1,'goodsNameKey','1')
  1090. this.$set(this.dataList1,'grade','一等品')
  1091. this.$set(this.dataList1,'gradeKey','1')
  1092. }
  1093. // 货名
  1094. pullDown({ constId: 'CON2' })
  1095. .toPromise()
  1096. .then((response) => {
  1097. this.goodnameList = response
  1098. })
  1099. // 品级
  1100. pullDown({ constId: 'CON3' })
  1101. .toPromise()
  1102. .then((response) => {
  1103. this.gradeList = response
  1104. })
  1105. pullDown({ constId: 'CON6' })
  1106. .toPromise()
  1107. .then((response) => {
  1108. this.storageType = response
  1109. })
  1110. pullDown({ constId: 'CON5' })
  1111. .toPromise()
  1112. .then((response) => {
  1113. this.storageType1 = response
  1114. })
  1115. xialaNo({
  1116. compId: this.compId,
  1117. })
  1118. .toPromise()
  1119. .then((response) => {
  1120. this.contractNoList = response
  1121. })
  1122. // //临时仓库入库类型
  1123. // pullDown({ constId: 'WARE1' })
  1124. // .toPromise()
  1125. // .then((response) => {
  1126. // this.storageType = respons
  1127. // })
  1128. // //临时仓库出库类型
  1129. // pullDown({ constId: 'WARE2' })
  1130. // .toPromise()
  1131. // .then((response) => {
  1132. // this.deliveryType = response
  1133. // })
  1134. //仓库名
  1135. getwarehousename({
  1136. compId: this.compId,
  1137. warehouseType: 1,
  1138. })
  1139. .toPromise()
  1140. .then((response) => {
  1141. this.warehouseNameList = response
  1142. })
  1143. getwarehousename({
  1144. compId: this.compId,
  1145. warehouseType: 2,
  1146. })
  1147. .toPromise()
  1148. .then((response) => {
  1149. this.warehouseNameList1 = response
  1150. })
  1151. //经办人
  1152. getstaff({ compId: sessionStorage.getItem('ws-pf_compId') })
  1153. .toPromise()
  1154. .then((response) => {
  1155. this.options = response
  1156. this.staffList = response
  1157. // this.agent = response
  1158. })
  1159. },
  1160. selecttaskType(e) {
  1161. for (var i = 0; i < this.taskTypeList.length; i++) {
  1162. if (this.taskTypeList[i].value == e) {
  1163. this.searchType = this.taskTypeList[i].type
  1164. }
  1165. }
  1166. },
  1167. fujian(row) {
  1168. if (
  1169. row.receiveAttachmentPath === null ||
  1170. row.receiveAttachmentPath === ''
  1171. ) {
  1172. EventBus.$emit(
  1173. 'warning',
  1174. this.$t('system.noticeCircular.NoInformation')
  1175. )
  1176. } else {
  1177. this.accessoryTFs = true
  1178. }
  1179. this.appendixIdss = row.receiveAttachmentPath
  1180. },
  1181. handleExamine(row) {
  1182. this.$router.push({
  1183. name: 'salesContractExamine',
  1184. query: { id: row.id },
  1185. })
  1186. },
  1187. // 关闭 dialog时 处理文件url 初始化upload组件
  1188. handleCloe() {
  1189. this.dialogViewSpareMoney = false
  1190. },
  1191. history(row) {
  1192. console.log(row)
  1193. billoperatehis({ id: row.id })
  1194. .toPromise()
  1195. .then((response) => {
  1196. this.historyList = response
  1197. })
  1198. },
  1199. async exportlist() {
  1200. const { data } = await export1(
  1201. {
  1202. compId: sessionStorage.getItem('ws-pf_compId'),
  1203. contractType: this.contractType,
  1204. currentPage: this.currentPage,
  1205. pageSize: this.pageSize,
  1206. searchType: this.searchType,
  1207. searchKeyWord: this.searchKeyWord,
  1208. startDate: this.startDate,
  1209. endDate: this.endDate,
  1210. },
  1211. {},
  1212. { responseType: 'blob' }
  1213. ).toPromise()
  1214. downloadFile({
  1215. res: data,
  1216. fileName: `${
  1217. this.date.year + (this.date.month ? `-${this.date.month}` : '')
  1218. }_采购合同`,
  1219. type: 'xls',
  1220. })
  1221. },
  1222. // deletecontract(){},
  1223. //删除
  1224. approve() {},
  1225. listQuery() {},
  1226. total() {},
  1227. clearfiltQuery() {},
  1228. selectCrtDuty() {},
  1229. },
  1230. }
  1231. </script>
  1232. <style lang="scss" scoped>
  1233. /deep/.basicInformation {
  1234. .el-info-table {
  1235. border: none;
  1236. position: relative;
  1237. }
  1238. .el-form-item {
  1239. width: 33.3333%;
  1240. border: none;
  1241. margin: 0;
  1242. .el-form-item__label {
  1243. text-align: left;
  1244. font-size: 14px;
  1245. font-family: PingFangSC-Regular, PingFang SC;
  1246. font-weight: 400;
  1247. color: #8890b1;
  1248. }
  1249. .el-form-item__content {
  1250. padding-left: 0px;
  1251. padding-right: 10px;
  1252. // background: #fff;
  1253. white-space: nowrap;
  1254. height: 40px;
  1255. display: flex;
  1256. -webkit-box-align: center;
  1257. align-items: center;
  1258. text-align: left;
  1259. overflow: hidden;
  1260. }
  1261. }
  1262. }
  1263. /deep/.el-radio {
  1264. color: #606266;
  1265. font-weight: 500;
  1266. line-height: 1;
  1267. cursor: pointer;
  1268. white-space: nowrap;
  1269. outline: 0;
  1270. margin-right: 30px;
  1271. margin-top: 15px;
  1272. }
  1273. /deep/.el-radio__inner {
  1274. border: 1px solid #dcdfe6;
  1275. border-radius: 100%;
  1276. width: 14px;
  1277. height: 14px;
  1278. background-color: #fff;
  1279. cursor: pointer;
  1280. -webkit-box-sizing: border-box;
  1281. box-sizing: border-box;
  1282. margin-left: 100px;
  1283. }
  1284. /deep/.el-radio__input {
  1285. white-space: nowrap;
  1286. cursor: pointer;
  1287. outline: 0;
  1288. line-height: 1;
  1289. vertical-align: middle;
  1290. margin-top: -1px;
  1291. }
  1292. .title {
  1293. position: relative;
  1294. padding-left: 10px;
  1295. }
  1296. .title::before {
  1297. content: '';
  1298. display: inline-block;
  1299. width: 5px;
  1300. height: 30px;
  1301. background: #5473e8;
  1302. position: absolute;
  1303. left: 0;
  1304. }
  1305. .el-form {
  1306. padding: 0 15%;
  1307. display: flex;
  1308. flex-wrap: wrap;
  1309. margin-left: -50px;
  1310. margin-top: 15px;
  1311. width: 110%;
  1312. }
  1313. .el-button--primary {
  1314. background-color: #5878e8;
  1315. border-color: #5878e8;
  1316. }
  1317. .el-col {
  1318. background: #f6f7fc;
  1319. }
  1320. .bg-right {
  1321. text-align: right;
  1322. padding: 16px 20px;
  1323. }
  1324. .center {
  1325. position: relative;
  1326. top: 50px;
  1327. width: 40%;
  1328. height: 2000px;
  1329. margin: 0 auto;
  1330. margin-right: 180px;
  1331. }
  1332. /deep/.el-form-item__label {
  1333. width: 160px;
  1334. }
  1335. .inspector {
  1336. width: 50%;
  1337. }
  1338. /deep/.el-form-item--small .el-form-item__label,
  1339. .el-form-item--small .el-form-item__content {
  1340. text-align: left;
  1341. }
  1342. /deep/.el-input--small {
  1343. font-size: 13px;
  1344. position: relative;
  1345. display: inline-block;
  1346. }
  1347. .center1 .small-title {
  1348. margin-left: 150px;
  1349. }
  1350. .center1 {
  1351. width: 90%;
  1352. margin: 0 auto;
  1353. margin-left: 10px;
  1354. margin-top: 25px;
  1355. }
  1356. /deep/.el-input--small .el-input__inner {
  1357. height: 32px;
  1358. line-height: 32px;
  1359. }
  1360. /deep/.el-select {
  1361. display: inline-block;
  1362. position: relative;
  1363. width: 100%;
  1364. }
  1365. .annu{
  1366. height: 81px;
  1367. background: #FFFFFF;
  1368. border-radius: 4px;
  1369. }
  1370. .basicInformation .el-form-item {
  1371. width: 50.3333%;
  1372. border: none;
  1373. margin: 0;
  1374. }
  1375. .huom{
  1376. width: 100px;
  1377. }
  1378. .el-form{
  1379. font-size: 14px;
  1380. font-family: PingFangSC-Regular, PingFang SC;
  1381. font-weight: 400;
  1382. color: #8890B1;
  1383. line-height: 16px;
  1384. }
  1385. .a{
  1386. margin-left: -32px;
  1387. }
  1388. .el-radio-group {
  1389. margin-left: 80px;
  1390. }
  1391. .ding{
  1392. height: 23px;
  1393. background: #E8ECF6;
  1394. box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  1395. }
  1396. .winseaview-main {
  1397. position: absolute;
  1398. left: 200px;
  1399. padding: 0;
  1400. width: calc(100% - 200px);
  1401. height: calc(100% + 60px);
  1402. -webkit-box-sizing: border-box;
  1403. box-sizing: border-box;
  1404. overflow: hidden;
  1405. }
  1406. .ziti{
  1407. width: 70px;
  1408. height: 20px;
  1409. font-size: 14px;
  1410. font-family: PingFangSC-Regular, PingFang SC;
  1411. font-weight: 400;
  1412. color: #8890B1;
  1413. line-height: 20px;
  1414. margin-left: 80px;
  1415. margin-top: 5px;
  1416. }
  1417. .ziti1{
  1418. font-size: 16px;
  1419. font-family: PingFangSC-Medium, PingFang SC;
  1420. font-weight: 500;
  1421. color: #262626;
  1422. line-height: 22px;
  1423. margin-left: 240px;
  1424. margin-top: -27px;
  1425. }
  1426. </style>