index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762
  1. <template>
  2. <view class="page-container uni-column">
  3. <view class="logo-container uni-row">
  4. <image class="logo" src="../../static/images/logo.png" />
  5. </view>
  6. <view class="title"><text class="label">德迈仕数字生产线管理平台</text></view>
  7. <view class="user-info-container uni-row">
  8. <view class="icon"><text class="label">{{ userInfo.nickName.charAt(0) }}</text></view>
  9. <view class="user-info uni-column">
  10. <view class="nickname uni-row"><text class="label">用户名: {{ userInfo.userName }}</text></view>
  11. <view class="nickname uni-row"><text class="label">ID:{{ userInfo.userId }}</text></view>
  12. <!-- <view class="process uni-row"><text class="label">当前工段:</text><text class="label">{{ deptName }}</text> -->
  13. <!-- </view> -->
  14. </view>
  15. </view>
  16. <view class="user-info uni-column" style="margin: 0 20rpx 20rpx 20rpx;width: 94%;">
  17. <uni-section title="当前厂别" type="square">
  18. <uni-data-select v-model="curSelectedTenantId" :localdata="tenantList" :clear="false"
  19. @change="handleTenantChange"></uni-data-select>
  20. </uni-section>
  21. <uni-section title="当前工段" type="square">
  22. <uni-data-select v-model="curSelectedDeptId" :localdata="userDeptsByTenantId" :clear="false"
  23. @change="handleDeptChange"></uni-data-select>
  24. </uni-section>
  25. </view>
  26. <!-- <view class="business-btn uni-row" v-if="showOther" @click="handleRecerptSfprod"><text class="label">半成品接收</text></view> -->
  27. <view class="business-btn uni-row" v-if="showOther" @click="handeleToReportHistory">
  28. <text class="label">我的报工</text>
  29. </view>
  30. <view v-if="showQuick" class="business-btn uni-row" @click="handleFastToProductionPlan">
  31. <text class="label">快速报工</text>
  32. </view>
  33. <view class="business-btn uni-row" v-if="showTakeStock" @click="handleToTakeStock">
  34. <text class="label">盘点</text>
  35. </view>
  36. <view class="business-btn uni-row" v-if="showOther && !showSizing" @click="handleToProductionPlan">
  37. <text class="label">报工</text>
  38. </view>
  39. <view class="business-btn uni-row" v-if="showInnerTurnover" @click="handleInnerTurnover">
  40. <text class="label">内部周转</text>
  41. </view>
  42. <view class="business-btn uni-row" v-if="showSizing" @click="handleToSorting">
  43. <text class="label">分选报工</text>
  44. </view>
  45. <view class="business-btn uni-row" v-if="showAuxiliary" @click="handleToAuxiliary">
  46. <text class="label">辅助工序报工</text>
  47. </view>
  48. <view class="business-btn uni-row" @click="handleToGetLotInfo">
  49. <text class="label">扫码查询批次信息</text>
  50. </view>
  51. <!-- <view class="business-btn uni-row" v-if="showInspector" @click="handleToProcessInspection">
  52. <text class="label">序检</text>
  53. </view> -->
  54. <view class="business-btn uni-row" @click="handleToInspectionReceive">
  55. <text class="label">检测领取</text>
  56. </view>
  57. <view class="business-btn uni-row" @click="handleToInspectionDetails">
  58. <text class="label">检查列表</text>
  59. </view>
  60. <!-- <view class="business-btn uni-row" v-if="showOutsourcedInspector" @click="handleToOutsourcedInspection">
  61. <text class="label">外协检查</text>
  62. </view>
  63. <!-- <view class="business-btn uni-row" v-if="showDeliveryInspection" @click="handleToDeliveryInspection">
  64. <text class="label">交检</text>
  65. </view> -->
  66. <!-- <view class="business-btn uni-row" v-if="showInspector" @click="handleToFirstInspection">
  67. <text class="label">首件检</text>
  68. </view> -->
  69. <view class="business-btn uni-row" v-if="showOnSiteInspector" @click="handleToOnSiteInspection">
  70. <text class="label">巡检</text>
  71. </view>
  72. <view class="business-btn uni-row" v-if="showInstrumentRoomInspection" @click="handleToInstrumentInspection">
  73. <text class="label">仪器室</text>
  74. </view>
  75. <!-- <view class="business-btn uni-row" v-if="showInspector" @click="handleToFactoryInspection">
  76. <text class="label">出厂检</text>
  77. </view> -->
  78. <!-- <view class="business-btn uni-row" v-if="showAdjust" @click="handleToAdjust">
  79. <text class="label">交检审核</text>
  80. </view> -->
  81. <!-- v-hasRoles="['porter']" 可通过v-Roles自定义指令进行显隐 -->
  82. <view class="business-btn uni-row" v-if="showTurn" @click="handleToHandlingList">
  83. <text class="label">周转</text>
  84. </view>
  85. <view class="business-btn uni-row" v-if="showOutSourceList" @click="handleOutsourceList">
  86. <text class="label">外协验箱</text>
  87. </view>
  88. <view class="business-btn uni-row" v-if="showChangeTurnover" @click="handleChangeTurnover">
  89. <text class="label">更换工段加工</text>
  90. </view>
  91. <view class="bottom-btn-container">
  92. <!-- <view class="start-batch-btn uni-row" @click="handleToEquiPmentList"><text class="label">绑定设备</text></view> -->
  93. <view class="start-batch-btn uni-row" @click="handleSwitchOrQuit">
  94. <text class="label">切换 / 退出账号</text>
  95. </view>
  96. </view>
  97. </view>
  98. <dialog-confirm ref="confirm" @submit="logout"></dialog-confirm>
  99. <dialog-inspectionChamber ref="inspectionChanberRef"
  100. @handleSelectInspectionChamber='handleSelectInspectionChamber'></dialog-inspectionChamber>
  101. </template>
  102. <script setup>
  103. import {
  104. ref
  105. } from 'vue'
  106. import {
  107. onLoad,
  108. onReady
  109. } from '@dcloudio/uni-app'
  110. import {
  111. getSubPlanDetailsList
  112. } from '../../api/business/subPlanDetails'
  113. import {
  114. checkCarrier
  115. } from '../../api/business/processInspection'
  116. import {
  117. getTenantList,
  118. } from '@/api/login/index.js'
  119. import {
  120. getUserDeptList
  121. } from '@/api/dept/dept.js'
  122. import {
  123. listInnerTurnover
  124. } from '../../api/business/innerTurnover'
  125. import {
  126. store
  127. } from '@/store/index.js'
  128. const userName = ref('') // 用户名
  129. const curSelectedDeptId = ref(null) // 用户当前选择的工段
  130. const curSelectedTenantId = ref(null) // 用户当前选择的厂别
  131. const userInfo = ref({}) // 用户信息
  132. const tenantList = ref([]) // 厂别列表
  133. const userDeptList = ref([]) // 用户所在所有工段列表
  134. const userDeptsByTenantId = ref([])
  135. const confirm = ref(null) // 确认组件
  136. const inspectionChanberRef = ref(null)
  137. const showTurn = ref(false)
  138. const showOther = ref(false)
  139. const showInspector = ref(false);
  140. const showOnSiteInspector = ref(false)
  141. const showInstrumentRoomInspection = ref(false)
  142. const showAdjust = ref(false)
  143. const showQuick = ref(false)
  144. const showSizing = ref(false)
  145. const showTakeStock = ref(false)
  146. const showInnerTurnover = ref(false)
  147. const showOutsourcedInspector = ref(false)
  148. const showDeliveryInspection = ref(false)
  149. const showOutSourceList = ref(false)
  150. const showChangeTurnover = ref(false)
  151. const showAuxiliary = ref(false)
  152. onLoad(() => {
  153. console.log(store.userInfo)
  154. userInfo.value = store.userInfo || {
  155. nickName: ""
  156. };
  157. store.tenantId = userInfo.value.tenantId;
  158. // console.log("-----------", store.userInfo.roles)
  159. // console.log("-----permissions-----", store.userInfo)
  160. if (store.userInfo.roles.some(item => item.roleId == 124) && store.userInfo.roles.length > 1) {
  161. showTurn.value = true;
  162. showOther.value = true;
  163. } else if (store.userInfo.roles.some(item => item.roleId == 124) && store.userInfo.roles.length == 1) {
  164. showTurn.value = true;
  165. showOther.value = false;
  166. } else if (store.userInfo.roles.some(item => item.roleId == 128)) {
  167. showInspector.value = true
  168. } else {
  169. showTurn.value = false;
  170. showOther.value = true;
  171. }
  172. //盘点状态
  173. if (store.userInfo.takeStock) {
  174. showTakeStock.value = true
  175. } else {
  176. showTakeStock.value = false
  177. }
  178. //巡检
  179. if (store.userInfo.roles.some(item => item.roleKey == 'patrolInspection')) {
  180. showOnSiteInspector.value = true
  181. } else {
  182. showOnSiteInspector.value = false
  183. }
  184. //交检
  185. if (store.userInfo.roles.some(item => item.roleKey == 'deliveryInspection')) {
  186. showDeliveryInspection.value = true
  187. } else {
  188. showDeliveryInspection.value = false
  189. }
  190. //仪器室
  191. if (store.userInfo.roles.some(item => item.roleKey == 'instrumentRoomInspection')) {
  192. showInstrumentRoomInspection.value = true
  193. } else {
  194. showInstrumentRoomInspection.value = false
  195. }
  196. //交检审核
  197. if (store.userInfo.roles.some(item => item.roleKey == 'adjuster')) {
  198. showAdjust.value = true
  199. } else {
  200. showAdjust.value = false
  201. }
  202. if (store.userInfo.permissions.some(item => item === 'business:outsource:checkBox') || store.userInfo
  203. .permissions.some(item => item === "*:*:*")) {
  204. showOutSourceList.value = true;
  205. } else {
  206. showOutSourceList.value = false;
  207. }
  208. if (store.userInfo.permissions.some(item => item === 'business:switchDept:change') || store.userInfo
  209. .permissions.some(item => item === "*:*:*")) {
  210. showChangeTurnover.value = true;
  211. } else {
  212. showChangeTurnover.value = false;
  213. }
  214. if (store.userInfo.roles.some(item => item.roleId == 129)) {
  215. showOutsourcedInspector.value = true
  216. // showOther.value = true;
  217. }
  218. showAuxiliary.value = true
  219. init();
  220. })
  221. /******************************** 定义一些方法 ********************************/
  222. function init() {
  223. getTenant();
  224. getUserDepts(store.userInfo.userId, store.tenantId);
  225. //getUserDeptsByTenantId(store.tenantId);
  226. }
  227. // 获取租户列表
  228. function getTenant() {
  229. getTenantList().then((res) => {
  230. if (res.code == 200) {
  231. for (var i = 0; i < res.rows.length; i++) {
  232. tenantList.value[i] = {
  233. text: res.rows[i].orgName,
  234. value: res.rows[i].id
  235. }
  236. }
  237. curSelectedTenantId.value = store.userInfo.tenantId;
  238. }
  239. })
  240. }
  241. // 获取人员工段
  242. function getUserDepts(userId, tenantId) {
  243. userDeptsByTenantId.value = []
  244. getUserDeptList(userId).then((res) => {
  245. if (res.code == 200) {
  246. userDeptList.value = res.data;
  247. for (let i = 0; i < res.data.length; i++) {
  248. if (res.data[i].tenantId == tenantId) {
  249. userDeptsByTenantId.value[i] = {
  250. text: res.data[i].deptName,
  251. value: res.data[i].deptId
  252. }
  253. }
  254. }
  255. if (res.data.some(v => v.hasQuick === 1)) {
  256. showQuick.value = true
  257. } else {
  258. showQuick.value = false
  259. }
  260. }
  261. })
  262. }
  263. // 根据租户id获取到工段
  264. function getUserDeptsByTenantId(tenantId) {
  265. userDeptsByTenantId.value = [];
  266. let newArr = userDeptList.value.filter((item, index, arrs) => item.tenantId == tenantId);
  267. for (var i = 0; i < newArr.length; i++) {
  268. userDeptsByTenantId.value[i] = {
  269. text: newArr[i].deptName,
  270. value: newArr[i].deptId
  271. }
  272. }
  273. }
  274. /*
  275. // 半成品接收
  276. function handleRecerptSfprod() {
  277. if (curSelectedDeptId.value) {
  278. uni.navigateTo({
  279. url: '/pages/recerptSfprod/index'
  280. })
  281. } else {
  282. uni.showToast({
  283. icon: "none",
  284. title: "请选择工段"
  285. })
  286. }
  287. }
  288. */
  289. function handeleToReportHistory() {
  290. uni.navigateTo({
  291. url: '/pages/reportHistory/index'
  292. })
  293. }
  294. function handleToGetLotInfo() {
  295. uni.navigateTo({
  296. url: '/pages/queryLotInfo/index'
  297. })
  298. }
  299. function handleInnerTurnover() {
  300. uni.navigateTo({
  301. url: '/pages/innerTurnover/index'
  302. })
  303. }
  304. function handleFastToProductionPlan() {
  305. if (curSelectedDeptId.value) {
  306. uni.navigateTo({
  307. url: '/pages/fastProductionPlan/index'
  308. })
  309. } else {
  310. uni.showToast({
  311. icon: "none",
  312. title: "请选择工段"
  313. })
  314. }
  315. }
  316. function handleToProductionPlan() {
  317. if (curSelectedDeptId.value) {
  318. uni.navigateTo({
  319. url: '/pages/productionPlan/index'
  320. })
  321. } else {
  322. uni.showToast({
  323. icon: "none",
  324. title: "请选择工段"
  325. })
  326. }
  327. }
  328. //检查列表
  329. function handleToInspectionDetails() {
  330. if (curSelectedDeptId.value) {
  331. uni.navigateTo({
  332. url: '/pages/inspectionDetails/index'
  333. })
  334. } else {
  335. uni.showToast({
  336. icon: "none",
  337. title: "请选择工段"
  338. })
  339. }
  340. }
  341. //盘点
  342. function handleToTakeStock() {
  343. if (curSelectedDeptId.value) {
  344. uni.navigateTo({
  345. url: '/pages/takeStock/index'
  346. })
  347. } else {
  348. uni.showToast({
  349. icon: "none",
  350. title: "请选择工段"
  351. })
  352. }
  353. }
  354. //交检审核
  355. function handleToAdjust() {
  356. if (curSelectedDeptId.value) {
  357. uni.navigateTo({
  358. url: '/pages/deliveryExamine/index'
  359. })
  360. } else {
  361. uni.showToast({
  362. icon: "none",
  363. title: "请选择工段"
  364. })
  365. }
  366. }
  367. // 分选
  368. function handleToSorting() {
  369. if (curSelectedDeptId.value) {
  370. uni.navigateTo({
  371. url: '/pages/sortProductionPlan/index'
  372. })
  373. } else {
  374. uni.showToast({
  375. icon: "none",
  376. title: "请选择工段"
  377. })
  378. }
  379. }
  380. //检查列表
  381. function handleToInspectionReceive() {
  382. const mpaasScanModule = uni.requireNativePlugin("Mpaas-Scan-Module");
  383. if (mpaasScanModule) {
  384. // 调用插件的 mpaasScan 方法
  385. mpaasScanModule.mpaasScan({
  386. // 扫码识别类型,参数可多选,qrCode、barCode,
  387. // 如不设置,默认识别所有扫码类型,可能有些许影响识别效率
  388. scanType: ["qrCode", "barCode"],
  389. // 是否隐藏相册,默认false不隐藏
  390. hideAlbum: false,
  391. },
  392. (ret) => {
  393. console.log(ret);
  394. let vehicleObj = {
  395. carrierCode: ret.resp_result
  396. };
  397. if (!vehicleObj.carrierCode || vehicleObj.carrierCode == "") {
  398. uni.showToast({
  399. icon: "none",
  400. title: "请扫载具码",
  401. duration: 1000
  402. })
  403. return;
  404. }
  405. checkCarrier({
  406. carrierCode: vehicleObj.carrierCode,
  407. }).then(response => {
  408. if (response.code == 200) {
  409. uni.navigateTo({
  410. url: "/pages/processInspectionReceive/form",
  411. success: (res) => {
  412. // 通过eventChannel向被打开页面传送数据
  413. res.eventChannel.emit("inspecionCarrierCode", {
  414. carrierCode: vehicleObj.carrierCode
  415. })
  416. }
  417. })
  418. } else {
  419. uni.showToast({
  420. icon: 'none',
  421. title: response.msg,
  422. duration: 2000
  423. })
  424. }
  425. })
  426. }
  427. );
  428. } else {
  429. // 测试时用
  430. checkCarrier({
  431. carrierCode: "300086",
  432. }).then(response => {
  433. if (response.code == 200) {
  434. uni.navigateTo({
  435. url: "/pages/processInspectionReceive/form",
  436. success: (res) => {
  437. // 通过eventChannel向被打开页面传送数据
  438. res.eventChannel.emit("inspecionCarrierCode", {
  439. carrierCode: "300086"
  440. })
  441. }
  442. })
  443. } else {
  444. uni.showToast({
  445. icon: 'none',
  446. title: response.msg,
  447. duration: 2000
  448. })
  449. }
  450. })
  451. }
  452. }
  453. // 外协检查
  454. function handleToOutsourcedInspection() {
  455. uni.navigateTo({
  456. url: '/pages/outsourcedInspection/index'
  457. })
  458. }
  459. // 工序检查
  460. function handleToProcessInspection() {
  461. uni.navigateTo({
  462. url: '/pages/processInspection/index'
  463. })
  464. }
  465. //检查
  466. function handleToInspection() {
  467. inspectionTypeDialog.value.open()
  468. }
  469. function handleToHandlingList() {
  470. console.log(store)
  471. uni.navigateTo({
  472. url: '/pages/handlingList/index'
  473. })
  474. }
  475. function handleOutsourceList() {
  476. uni.navigateTo({
  477. url: '/pages/outsourcedReturnCheck/index'
  478. })
  479. }
  480. //
  481. function handleChangeTurnover() {
  482. if (curSelectedDeptId.value) {
  483. uni.navigateTo({
  484. url: '/pages/switchDept/index'
  485. })
  486. } else {
  487. uni.showToast({
  488. icon: "none",
  489. title: "请选择工段"
  490. })
  491. }
  492. }
  493. //交检
  494. function handleToDeliveryInspection() {
  495. if (curSelectedDeptId.value) {
  496. uni.navigateTo({
  497. url: '/pages/deliveryInspection/index'
  498. })
  499. } else {
  500. uni.showToast({
  501. icon: "none",
  502. title: "请选择工段"
  503. })
  504. }
  505. }
  506. //首件检
  507. function handleToFirstInspection() {
  508. if (curSelectedDeptId.value) {
  509. uni.navigateTo({
  510. url: '/pages/switchDept/index'
  511. })
  512. } else {
  513. uni.showToast({
  514. icon: "none",
  515. title: "请选择工段"
  516. })
  517. }
  518. }
  519. //巡检
  520. function handleToOnSiteInspection() {
  521. if (curSelectedDeptId.value) {
  522. uni.navigateTo({
  523. url: '/pages/onSiteInspection/index'
  524. })
  525. } else {
  526. uni.showToast({
  527. icon: "none",
  528. title: "请选择工段"
  529. })
  530. }
  531. }
  532. //仪器室
  533. function handleToInstrumentInspection() {
  534. if (curSelectedDeptId.value) {
  535. //选择仪器室
  536. inspectionChanberRef.value.open()
  537. } else {
  538. uni.showToast({
  539. icon: "none",
  540. title: "请选择工段"
  541. })
  542. }
  543. }
  544. function handleSelectInspectionChamber(data) {
  545. uni.navigateTo({
  546. url: "/pages/instrumentRoomInspection/index",
  547. success: (res) => {
  548. // 通过eventChannel向被打开页面传送数据
  549. res.eventChannel.emit("inspectionChamberInfo", {
  550. data: data
  551. })
  552. }
  553. })
  554. }
  555. //出厂检
  556. function handleToFactoryInspection() {
  557. uni.navigateTo({
  558. url: '/pages/onSiteInspection/index'
  559. })
  560. }
  561. function logout() {
  562. uni.reLaunch({
  563. url: '/pages/index/index'
  564. })
  565. }
  566. function handleSwitchOrQuit() {
  567. let msg = "确认退出登录吗?"
  568. confirm.value.open(msg);
  569. }
  570. /*
  571. // 绑定设备
  572. function handleToEquiPmentList() {
  573. uni.navigateTo({
  574. url: "/pages/equipmentList/index"
  575. })
  576. }
  577. */
  578. function handleTenantChange() {
  579. console.log(curSelectedTenantId)
  580. store.tenantId = curSelectedTenantId.value
  581. curSelectedDeptId.value = null
  582. getUserDeptsByTenantId(store.tenantId)
  583. }
  584. function handleDeptChange() {
  585. let curDept = userDeptList.value.find(item => item.deptId === curSelectedDeptId.value)
  586. store.curDeptDetails = curDept
  587. if (curDept.deptName === '分选' || store.userInfo.roles.some(item => item.roleKey == 'sortingInspector')) {
  588. showSizing.value = true
  589. } else {
  590. showSizing.value = false
  591. }
  592. console.log(store)
  593. handleSelectInnerTurnover()
  594. }
  595. //查询当前工段当前操作者是否能看见内部周转按钮
  596. function handleSelectInnerTurnover() {
  597. listInnerTurnover({
  598. deptId: store.curDeptDetails.deptId,
  599. userId: store.userInfo.userId
  600. }).then(res => {
  601. if (res.code == 200) {
  602. showInnerTurnover.value = res.rows.length > 0 ? true : false
  603. }
  604. })
  605. }
  606. function handleToAuxiliary() {
  607. if (curSelectedDeptId.value) {
  608. uni.navigateTo({
  609. url: '/pages/auxiliaryDaywork/index'
  610. })
  611. } else {
  612. uni.showToast({
  613. icon: "none",
  614. title: "请选择工段"
  615. })
  616. }
  617. }
  618. </script>
  619. <style lang="scss">
  620. .page-container {
  621. height: calc(100% - 208rpx);
  622. overflow: auto;
  623. }
  624. .logo-container {
  625. justify-content: center;
  626. .logo {
  627. width: 120rpx;
  628. height: 120rpx;
  629. }
  630. }
  631. .title {
  632. align-items: center;
  633. .label {
  634. font-size: 40rpx;
  635. font-weight: bold;
  636. }
  637. }
  638. .user-info-container {
  639. margin: 16rpx 0 20rpx 20rpx;
  640. align-items: center;
  641. .icon {
  642. width: 120rpx;
  643. height: 120rpx;
  644. justify-content: center;
  645. align-items: center;
  646. border-radius: 60rpx;
  647. border: 1px solid #e1e1e1;
  648. .label {
  649. font-size: 64rpx;
  650. }
  651. }
  652. .user-info {
  653. box-sizing: border-box;
  654. padding-top: 8rpx;
  655. margin-left: 24rpx;
  656. justify-content: center;
  657. // font-size: 20rpx;
  658. .nickname {
  659. margin-bottom: 16rpx;
  660. .label {
  661. font-weight: bold;
  662. font-size: 32rpx;
  663. }
  664. }
  665. .process {
  666. .label {
  667. font-size: 32rpx;
  668. }
  669. }
  670. }
  671. .data-select {
  672. flex: 3;
  673. width: 100%;
  674. height: 50rpx;
  675. border-radius: 18rpx;
  676. background-color: #FFF;
  677. .data-select-options {
  678. width: 200rpx;
  679. }
  680. }
  681. }
  682. .business-btn {
  683. margin: 0 20rpx 20rpx 20rpx;
  684. background-color: #fff;
  685. min-height: 100rpx;
  686. width: 94%;
  687. align-items: center;
  688. justify-content: center;
  689. border: 1rpx solid #e1e1e1;
  690. border-radius: 8rpx;
  691. .label {
  692. font-size: 35rpx;
  693. }
  694. }
  695. .bottom-btn-container {
  696. position: fixed;
  697. right: 20rpx;
  698. bottom: 0;
  699. left: 20rpx;
  700. .start-batch-btn {
  701. // background-color: grey;
  702. background-color: #1684fc;
  703. margin-bottom: 24rpx;
  704. border-radius: 8rpx;
  705. justify-content: center;
  706. align-items: center;
  707. height: 80rpx;
  708. .label {
  709. font-size: 32rpx;
  710. color: #ffffff;
  711. }
  712. }
  713. }
  714. </style>