index.vue 19 KB

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