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="showFirstArticleInspection" @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" @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 showFirstArticleInspection = ref(false)
  150. const showOutSourceList = ref(false)
  151. const showChangeTurnover = 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 == 'firstArticleInspection')) {
  198. showFirstArticleInspection.value = true
  199. }else{
  200. showFirstArticleInspection.value = false
  201. }
  202. //交检审核
  203. if (store.userInfo.roles.some(item => item.roleKey == 'adjuster')) {
  204. showAdjust.value = true
  205. } else {
  206. showAdjust.value = false
  207. }
  208. if (store.userInfo.permissions.some(item => item === 'business:outsource:checkBox') || store.userInfo
  209. .permissions.some(item => item === "*:*:*")) {
  210. showOutSourceList.value = true;
  211. } else {
  212. showOutSourceList.value = false;
  213. }
  214. if (store.userInfo.permissions.some(item => item === 'business:switchDept:change') || store.userInfo
  215. .permissions.some(item => item === "*:*:*")) {
  216. showChangeTurnover.value = true;
  217. } else {
  218. showChangeTurnover.value = false;
  219. }
  220. if (store.userInfo.roles.some(item => item.roleId == 129)) {
  221. showOutsourcedInspector.value = true
  222. // showOther.value = true;
  223. }
  224. showAuxiliary.value = true
  225. init();
  226. })
  227. /******************************** 定义一些方法 ********************************/
  228. function init() {
  229. getTenant();
  230. getUserDepts(store.userInfo.userId, store.tenantId);
  231. //getUserDeptsByTenantId(store.tenantId);
  232. }
  233. // 获取租户列表
  234. function getTenant() {
  235. getTenantList().then((res) => {
  236. if (res.code == 200) {
  237. for (var i = 0; i < res.rows.length; i++) {
  238. tenantList.value[i] = {
  239. text: res.rows[i].orgName,
  240. value: res.rows[i].id
  241. }
  242. }
  243. curSelectedTenantId.value = store.userInfo.tenantId;
  244. }
  245. })
  246. }
  247. // 获取人员工段
  248. function getUserDepts(userId, tenantId) {
  249. userDeptsByTenantId.value = []
  250. getUserDeptList(userId).then((res) => {
  251. if (res.code == 200) {
  252. userDeptList.value = res.data;
  253. for (let i = 0; i < res.data.length; i++) {
  254. if (res.data[i].tenantId == tenantId) {
  255. userDeptsByTenantId.value[i] = {
  256. text: res.data[i].deptName,
  257. value: res.data[i].deptId
  258. }
  259. }
  260. }
  261. if (res.data.some(v => v.hasQuick === 1)) {
  262. showQuick.value = true
  263. } else {
  264. showQuick.value = false
  265. }
  266. }
  267. })
  268. }
  269. // 根据租户id获取到工段
  270. function getUserDeptsByTenantId(tenantId) {
  271. userDeptsByTenantId.value = [];
  272. let newArr = userDeptList.value.filter((item, index, arrs) => item.tenantId == tenantId);
  273. for (var i = 0; i < newArr.length; i++) {
  274. userDeptsByTenantId.value[i] = {
  275. text: newArr[i].deptName,
  276. value: newArr[i].deptId
  277. }
  278. }
  279. }
  280. /*
  281. // 半成品接收
  282. function handleRecerptSfprod() {
  283. if (curSelectedDeptId.value) {
  284. uni.navigateTo({
  285. url: '/pages/recerptSfprod/index'
  286. })
  287. } else {
  288. uni.showToast({
  289. icon: "none",
  290. title: "请选择工段"
  291. })
  292. }
  293. }
  294. */
  295. function handeleToReportHistory() {
  296. uni.navigateTo({
  297. url: '/pages/reportHistory/index'
  298. })
  299. }
  300. function handleToGetLotInfo() {
  301. uni.navigateTo({
  302. url: '/pages/queryLotInfo/index'
  303. })
  304. }
  305. function handleInnerTurnover(){
  306. uni.navigateTo({
  307. url: '/pages/innerTurnover/index'
  308. })
  309. }
  310. function handleFastToProductionPlan() {
  311. if (curSelectedDeptId.value) {
  312. uni.navigateTo({
  313. url: '/pages/fastProductionPlan/index'
  314. })
  315. } else {
  316. uni.showToast({
  317. icon: "none",
  318. title: "请选择工段"
  319. })
  320. }
  321. }
  322. function handleToProductionPlan() {
  323. if (curSelectedDeptId.value) {
  324. uni.navigateTo({
  325. url: '/pages/productionPlan/index'
  326. })
  327. } else {
  328. uni.showToast({
  329. icon: "none",
  330. title: "请选择工段"
  331. })
  332. }
  333. }
  334. //检查列表
  335. function handleToInspectionDetails() {
  336. if (curSelectedDeptId.value) {
  337. uni.navigateTo({
  338. url: '/pages/inspectionDetails/index'
  339. })
  340. } else {
  341. uni.showToast({
  342. icon: "none",
  343. title: "请选择工段"
  344. })
  345. }
  346. }
  347. //盘点
  348. function handleToTakeStock() {
  349. if (curSelectedDeptId.value) {
  350. uni.navigateTo({
  351. url: '/pages/takeStock/index'
  352. })
  353. } else {
  354. uni.showToast({
  355. icon: "none",
  356. title: "请选择工段"
  357. })
  358. }
  359. }
  360. //交检审核
  361. function handleToAdjust() {
  362. if (curSelectedDeptId.value) {
  363. uni.navigateTo({
  364. url: '/pages/deliveryExamine/index'
  365. })
  366. } else {
  367. uni.showToast({
  368. icon: "none",
  369. title: "请选择工段"
  370. })
  371. }
  372. }
  373. // 分选
  374. function handleToSorting() {
  375. if (curSelectedDeptId.value) {
  376. uni.navigateTo({
  377. url: '/pages/sortProductionPlan/index'
  378. })
  379. } else {
  380. uni.showToast({
  381. icon: "none",
  382. title: "请选择工段"
  383. })
  384. }
  385. }
  386. //检查列表
  387. function handleToInspectionReceive() {
  388. const mpaasScanModule = uni.requireNativePlugin("Mpaas-Scan-Module");
  389. if (mpaasScanModule) {
  390. // 调用插件的 mpaasScan 方法
  391. mpaasScanModule.mpaasScan({
  392. // 扫码识别类型,参数可多选,qrCode、barCode,
  393. // 如不设置,默认识别所有扫码类型,可能有些许影响识别效率
  394. scanType: ["qrCode", "barCode"],
  395. // 是否隐藏相册,默认false不隐藏
  396. hideAlbum: false,
  397. },
  398. (ret) => {
  399. console.log(ret);
  400. let vehicleObj = {
  401. carrierCode: ret.resp_result
  402. };
  403. if (!vehicleObj.carrierCode || vehicleObj.carrierCode == "") {
  404. uni.showToast({
  405. icon: "none",
  406. title: "请扫载具码",
  407. duration: 1000
  408. })
  409. return;
  410. }
  411. checkCarrier({
  412. carrierCode: vehicleObj.carrierCode,
  413. }).then(response => {
  414. if (response.code == 200) {
  415. uni.navigateTo({
  416. url: "/pages/processInspectionReceive/form",
  417. success: (res) => {
  418. // 通过eventChannel向被打开页面传送数据
  419. res.eventChannel.emit("inspecionCarrierCode", {
  420. carrierCode: vehicleObj.carrierCode
  421. })
  422. }
  423. })
  424. } else {
  425. uni.showToast({
  426. icon: 'none',
  427. title: response.msg,
  428. duration: 2000
  429. })
  430. }
  431. })
  432. }
  433. );
  434. } else {
  435. // 测试时用
  436. checkCarrier({
  437. carrierCode: "300086",
  438. }).then(response => {
  439. if (response.code == 200) {
  440. uni.navigateTo({
  441. url: "/pages/processInspectionReceive/form",
  442. success: (res) => {
  443. // 通过eventChannel向被打开页面传送数据
  444. res.eventChannel.emit("inspecionCarrierCode", {
  445. carrierCode: "300086"
  446. })
  447. }
  448. })
  449. } else {
  450. uni.showToast({
  451. icon: 'none',
  452. title: response.msg,
  453. duration: 2000
  454. })
  455. }
  456. })
  457. }
  458. }
  459. // 外协检查
  460. function handleToOutsourcedInspection() {
  461. uni.navigateTo({
  462. url: '/pages/outsourcedInspection/index'
  463. })
  464. }
  465. // 工序检查
  466. function handleToProcessInspection() {
  467. uni.navigateTo({
  468. url: '/pages/processInspection/index'
  469. })
  470. }
  471. //检查
  472. function handleToInspection() {
  473. inspectionTypeDialog.value.open()
  474. }
  475. function handleToHandlingList() {
  476. console.log(store)
  477. uni.navigateTo({
  478. url: '/pages/handlingList/index'
  479. })
  480. }
  481. function handleOutsourceList() {
  482. uni.navigateTo({
  483. url: '/pages/outsourcedReturnCheck/index'
  484. })
  485. }
  486. //
  487. function handleChangeTurnover() {
  488. if (curSelectedDeptId.value) {
  489. uni.navigateTo({
  490. url: '/pages/switchDept/index'
  491. })
  492. } else {
  493. uni.showToast({
  494. icon: "none",
  495. title: "请选择工段"
  496. })
  497. }
  498. }
  499. //交检
  500. function handleToDeliveryInspection() {
  501. if (curSelectedDeptId.value) {
  502. uni.navigateTo({
  503. url: '/pages/deliveryInspection/index'
  504. })
  505. } else {
  506. uni.showToast({
  507. icon: "none",
  508. title: "请选择工段"
  509. })
  510. }
  511. }
  512. //首件检
  513. function handleToFirstInspection() {
  514. if (curSelectedDeptId.value) {
  515. uni.navigateTo({
  516. url: '/pages/firstInspection/index'
  517. })
  518. } else {
  519. uni.showToast({
  520. icon: "none",
  521. title: "请选择工段"
  522. })
  523. }
  524. }
  525. //巡检
  526. function handleToOnSiteInspection() {
  527. if (curSelectedDeptId.value) {
  528. uni.navigateTo({
  529. url: '/pages/onSiteInspection/index'
  530. })
  531. } else {
  532. uni.showToast({
  533. icon: "none",
  534. title: "请选择工段"
  535. })
  536. }
  537. }
  538. //仪器室
  539. function handleToInstrumentInspection() {
  540. //选择仪器室
  541. inspectionChanberRef.value.open()
  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>