jbd.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  1. <template>
  2. <oa-scroll
  3. customClass="unitInfoCollection-container scroll-height"
  4. :refresherLoad="false"
  5. :refresherEnabled="false"
  6. :refresherEnabledTitle="false"
  7. :refresherDefaultStyle="'none'"
  8. :refresherThreshold="44"
  9. :refresherBackground="'#f5f6f7'"
  10. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  11. style="height:calc(100vh - 110px)"
  12. >
  13. <template #default>
  14. <view class="centerOne">
  15. <u--form ref="uForm" :model="form" :rules="rules" labelWidth="180">
  16. <view style="padding: 0px 10px 0px 10px; background: #ffffff">
  17. <view style="padding-left: 9px">
  18. <u-form-item
  19. label="核算方式:"
  20. prop="accountingMethod"
  21. required
  22. :borderBottom="false"
  23. label-position="top"
  24. @click="handleAction('核算方式')"
  25. style="margin-top:10px"
  26. >
  27. <u-input
  28. v-model="form.accountingMethodName"
  29. placeholder="请选择核算方式"
  30. suffixIcon="arrow-right"
  31. suffixIconStyle="color: #909399"
  32. border="none"
  33. disabledColor="transparent"
  34. disabled
  35. />
  36. </u-form-item>
  37. </view>
  38. </view>
  39. <view style="margin-top:10px;padding: 0px 10px 0px 10px; background: #ffffff">
  40. <view style="padding-left: 9px">
  41. <u-form-item
  42. label="开始时间:"
  43. prop="startTime"
  44. required
  45. label-position="top"
  46. @click="handleDateTime('开始时间', 0, form.startTime)"
  47. >
  48. <u-input
  49. v-model="form.startTime1"
  50. placeholder="请选择开始时间"
  51. border="none"
  52. suffixIcon="arrow-right"
  53. suffixIconStyle="color: #909399;"
  54. />
  55. </u-form-item>
  56. </view>
  57. </view>
  58. <view style="margin-top:10px;padding: 0px 10px 0px 10px; background: #ffffff">
  59. <view style="padding-left: 9px">
  60. <u-form-item
  61. label="结束时间:"
  62. prop="endTime"
  63. required
  64. label-position="top"
  65. @click="handleDateTime('结束时间', 1, form.endTime)"
  66. >
  67. <u-input
  68. v-model="form.endTime1"
  69. placeholder="请选择结束时间"
  70. border="none"
  71. suffixIcon="arrow-right"
  72. suffixIconStyle="color: #909399;"
  73. />
  74. </u-form-item>
  75. </view>
  76. </view>
  77. <view style="margin-top:10px;padding: 0px 10px 0px 10px; background: #ffffff">
  78. <view style="padding-left: 9px">
  79. <u-form-item
  80. label="加班时长(小时):"
  81. prop="duration"
  82. required
  83. label-position="top"
  84. >
  85. <u-input
  86. v-model="form.duration"
  87. placeholder="请输入加班时长"
  88. border="none"
  89. maxlength="4"
  90. />
  91. </u-form-item>
  92. </view>
  93. </view>
  94. <view style="margin-top:10px;padding: 0px 10px 0px 10px; background: #ffffff">
  95. <view style="padding-left: 9px">
  96. <u-form-item
  97. label="加班事由:"
  98. prop="reason"
  99. required
  100. label-position="top"
  101. >
  102. <u-input
  103. v-model="form.reason"
  104. placeholder="请输入加班事由"
  105. border="none"
  106. maxlength="18"
  107. />
  108. </u-form-item>
  109. </view>
  110. </view>
  111. <view style="margin-top:10px;padding: 0px 10px 0px 10px; background: #ffffff">
  112. <view style="padding-left: 9px">
  113. <u-form-item label="日报及打卡记录图片:" prop="image" label-position="top" required>
  114. <div style="margin-top: 10px">
  115. <oa-upload :uploadCount="1" :uploadImage="form.image" @uploadSuccessChange="uploadSuccessChange" @uploadDeleteChange="uploadDeleteChange"></oa-upload>
  116. </div>
  117. <!-- <view style="color: #666666">图片支持png、jpg</view> -->
  118. </u-form-item>
  119. </view>
  120. </view>
  121. </u--form>
  122. </view>
  123. <u-picker
  124. :show="actionShow"
  125. :columns="actionsList"
  126. :title="actionTitle"
  127. keyName="label"
  128. visibleItemCount="6"
  129. :defaultIndex="[actionDefaultIndex]"
  130. :closeOnClickOverlay="true"
  131. @close="actionShow = false"
  132. @cancel="actionShow = false"
  133. @confirm="selectAction"
  134. ></u-picker>
  135. <u-datetime-picker
  136. :show="showTime"
  137. v-model="timeValue"
  138. mode="datetime"
  139. @close="showTime = false"
  140. @cancel="showTime = false"
  141. @confirm="timeSubmit"
  142. :closeOnClickOverlay="true"
  143. :minDate="Number(new Date())"
  144. :maxDate="Number(new Date('2027'))"
  145. ></u-datetime-picker>
  146. <view class="list-cell" style="color: #666666; line-height: 25px; width: auto;">
  147. <view class="content-area-top">
  148. <view style="width:100%;font-weight:bold;color:#333333;font-size:16px;margin-bottom:20px">流程</view>
  149. <view class="stepBar">
  150. <view class="item" v-for="(item, index) in nodeList" :key="index">
  151. <view class="left">
  152. <view class="yuan"></view>
  153. <div>
  154. <view class="title">
  155. {{ item.nodeName }}
  156. </view>
  157. <view class="name">
  158. {{ item.appointApprover.split(',').length }}人{{ item.nodeType == "1" ? "审批" : item.nodeType == "2" ? "抄送" : "" }}
  159. </view>
  160. </div>
  161. </view>
  162. <view class="right">
  163. <view class="content-area-header mb10 text-center" style="display: inline-block" v-for="(item2, index2) in ccTo[index]" :key="index2">
  164. <img v-if='item2.avatar' class="content-area-header-avatarImg mlr5" :src='item2.avatar' style="display: block; width: 40px; height: 40px;border-radius: 6px;" />
  165. <u-avatar
  166. v-else
  167. class="content-area-header-avatar mlr5"
  168. :text='item2.nickName.length > 2 ? item2.nickName.slice(1, 3) : item2.nickName'
  169. shape="square"
  170. size="40"
  171. fontSize="12"
  172. color="#ffffff"
  173. :bgColor="proxy.$settingStore.themeColor.color"
  174. ></u-avatar>
  175. <u-text :text='item2.nickName' color="#000000" size="14" align="center" class="userName"></u-text>
  176. </view>
  177. </view>
  178. <view class="line gray" v-if="index < nodeList.length -1">
  179. </view>
  180. </view>
  181. </view>
  182. </view>
  183. </view>
  184. </template>
  185. </oa-scroll>
  186. <view class="app-button">
  187. <u-button type="primary" @click="handleSubmit('提交')" shape="circle"> 提交 </u-button>
  188. </view>
  189. </template>
  190. <script setup>
  191. /*----------------------------------依赖引入-----------------------------------*/
  192. import { onLoad, onShow, onHide, onLaunch, onReady } from "@dcloudio/uni-app";
  193. import {
  194. ref,
  195. onMounted,
  196. inject,
  197. shallowRef,
  198. reactive,
  199. toRefs,
  200. getCurrentInstance,
  201. } from "vue";
  202. /*----------------------------------接口引入-----------------------------------*/
  203. import {
  204. companyByNameSelect,
  205. addBaseCompany,
  206. delBaseBuild,
  207. delBaseBuildExtinguish,
  208. } from "@/api/business/mhxf/unitInfoCollection";
  209. /*----------------------------------组件引入-----------------------------------*/
  210. /*----------------------------------store引入-----------------------------------*/
  211. /*----------------------------------公共方法引入-----------------------------------*/
  212. import {
  213. getOaFormDefinition,
  214. addOaDocument,
  215. } from "@/api/oa/approval/index.js";
  216. /*----------------------------------公共变量-----------------------------------*/
  217. const { proxy } = getCurrentInstance();
  218. /*----------------------------------变量声明-----------------------------------*/
  219. const props = defineProps({
  220. data: {
  221. type: Object,
  222. default: Object,
  223. },
  224. })
  225. const actionTitle = ref(null);
  226. const actionsList = ref([]);
  227. const actionDefaultIndex = ref(0);
  228. const actionShow = ref(false);
  229. const uForm = ref(null);
  230. const showTime = ref(false) //时间选择显示隐藏
  231. const timeValue = ref(Number(new Date())) //时间选择值
  232. const timeTitle = ref("") //时间选择标题
  233. const state = reactive({
  234. form: {
  235. reason: "",
  236. accountingMethod: undefined,
  237. accountingMethodName: undefined,
  238. formName: undefined,
  239. duration: "",
  240. image: "",
  241. startTime: "",
  242. startTime1: "",
  243. endTime: "",
  244. endTime1: "",
  245. formSign: undefined,
  246. formId: undefined,
  247. },
  248. rules: {
  249. accountingMethod: [{ required: true, message: "请选择核算方式", trigger: "change" }],
  250. startTime: [
  251. { required: true, message: "加班开始时间不能为空", trigger: "change" },
  252. ],
  253. endTime: [
  254. { required: true, message: "加班结束时间不能为空", trigger: "change" },
  255. ],
  256. duration: [
  257. { required: true, message: "加班时长不能为空", trigger: "blur" },
  258. ],
  259. reason: [{ required: true, message: "加班事由不能为空", trigger: "blur" }],
  260. image: [{ required: true, message: "日报及打卡记录图片不能为空", trigger: "blur" }],
  261. },
  262. userData:[],
  263. ccTo:[]
  264. });
  265. const { form, rules, userData, ccTo} = toRefs(state);
  266. const nodeList = ref([]);
  267. state.userData = props.data.userData
  268. nodeList.value = props.data.nodeList
  269. state.ccTo = props.data.ccTo
  270. form.value.formSign = props.data.form.formSign
  271. form.value.formId = props.data.form.id
  272. //编辑状态
  273. if(JSON.stringify(props.data.docNoDetail)!= "{}"){
  274. form.value.accountingMethod = props.data.docNoDetail.accountingMethod.toString()
  275. form.value.accountingMethodName = "申请调休"
  276. }
  277. /**
  278. * @图片上传成功回调
  279. */
  280. function uploadSuccessChange(e) {
  281. form.value.image = e.url;
  282. }
  283. /**
  284. * @图片删除回调
  285. */
  286. function uploadDeleteChange(e) {
  287. form.value.image = e;
  288. }
  289. /**
  290. * @api提交
  291. */
  292. function handleSubmit(value) {
  293. uForm.value
  294. .validate()
  295. .then((res) => {
  296. if(form.value.docNo){
  297. updateDocument({
  298. docNo: form.value.docNo,
  299. id: form.value.id,
  300. formId: form.value.formId,
  301. formSign: form.value.formSign,
  302. type: form.value.type,
  303. startTime: form.value.startTime,
  304. endTime: form.value.endTime,
  305. duration: Number(form.value.duration),
  306. reason: form.value.reason,
  307. docStatus: 1,
  308. image: form.value.image
  309. }).then((res) => {
  310. proxy.$modal.msgSuccess("表单修改成功");
  311. if(getCurrentPages().length > 1){
  312. uni.navigateBack()
  313. }else{
  314. uni.switchTab({
  315. url: `/pages/business/oa/approval/index`
  316. })
  317. }
  318. });
  319. }else{
  320. addOaDocument({
  321. formId: form.value.formId,
  322. formSign: form.value.formSign,
  323. type: form.value.type,
  324. startTime: form.value.startTime,
  325. endTime: form.value.endTime,
  326. duration: Number(form.value.duration),
  327. reason: form.value.reason,
  328. docStatus: 1,
  329. image: form.value.image
  330. }).then((res) => {
  331. proxy.$modal.msgSuccess("表单提交成功");
  332. if(getCurrentPages().length > 1){
  333. uni.navigateBack()
  334. }else{
  335. uni.redirectTo({
  336. url: `/pages/business/oa/approval/index`
  337. })
  338. }
  339. });
  340. }
  341. })
  342. .catch((errors) => {
  343. proxy.$modal.msg("校验失败");
  344. });
  345. }
  346. /**
  347. * @action弹出框点击事件
  348. */
  349. function handleAction(value, index, ind) {
  350. if (value == "核算方式") {
  351. actionTitle.value = value;
  352. actionsList.value = [[{label:"申请调休",value:"0"}]];
  353. actionDefaultIndex.value = 0;
  354. }
  355. actionShow.value = true;
  356. }
  357. /**
  358. * @action弹出框选择事件
  359. */
  360. function selectAction(e) {
  361. if(actionTitle.value == "核算方式"){
  362. form.value.accountingMethod = e.value[0].value;
  363. form.value.accountingMethodName = e.value[0].label;
  364. }
  365. actionShow.value = false;
  366. }
  367. /**
  368. * @时间弹出框点击事件
  369. */
  370. function handleDateTime(value, index, time) {
  371. showTime.value = true;
  372. timeTitle.value = value;
  373. }
  374. /**
  375. * @时间选择器
  376. * @确定按钮事件
  377. */
  378. function timeSubmit(data) {
  379. let time = proxy.$time.getFormatterDate(data.value);
  380. let timeData = time.split(" ")[0] + " " + time.split(" ")[1]
  381. if (timeTitle.value == "开始时间") {
  382. form.value.startTime1 = timeData;
  383. form.value.startTime = timeData;
  384. } else if (timeTitle.value == "结束时间") {
  385. form.value.endTime1 = timeData;
  386. form.value.endTime = timeData;
  387. }
  388. showTime.value = false;
  389. }
  390. onLoad((options) => {
  391. });
  392. onShow(() => {
  393. //调用系统主题颜色
  394. proxy.$settingStore.systemThemeColor([1]);
  395. });
  396. </script>
  397. <style lang="scss">
  398. .unitInfoCollection-container {
  399. .centerOne,
  400. .centerTwo {
  401. .title {
  402. color: #333333;
  403. text-align: center;
  404. margin-top: 10px;
  405. }
  406. }
  407. :deep(.u-picker__view__column__item) {
  408. font-size: 13px;
  409. }
  410. }
  411. .app-button{
  412. position: fixed;
  413. bottom:10px;
  414. left:10px;
  415. width:calc(100% - 20px);
  416. background: #fff;
  417. button{
  418. border-radius: 10px !important;
  419. }
  420. }
  421. .stepBar{
  422. margin-top:-20px;
  423. font-weight: 400;
  424. width:100%;
  425. .item{
  426. position: relative;
  427. .left{
  428. width:100%;
  429. position: relative;
  430. .yuan{
  431. width:10px;
  432. height:10px;
  433. margin-top:10px;
  434. vertical-align: middle;
  435. float: left;
  436. border-radius: 50%;
  437. background: #999;
  438. }
  439. >div{
  440. width:80%;
  441. margin-left:20px;
  442. vertical-align: top;
  443. line-height: 20px;
  444. .title{
  445. font-size: 14px;
  446. }
  447. .name{
  448. font-size: 12px;
  449. color: #999;
  450. }
  451. }
  452. }
  453. .line{
  454. height:84%;
  455. width:1px;
  456. position: absolute;
  457. top:24px;
  458. left:5px;
  459. background: #999;
  460. }
  461. .right{
  462. width:calc(100% - 100px);
  463. margin-left:100px;
  464. text-align: right;
  465. }
  466. }
  467. .item:nth-child(1){
  468. margin-top:10%;
  469. }
  470. }
  471. .userName{
  472. white-space: nowrap; /* 确保文本在一行内显示 */
  473. overflow: hidden; /* 超出容器部分隐藏 */
  474. text-overflow: ellipsis; /* 超出部分显示省略号 */
  475. width: 50px !important; /* 定义容器宽度 */
  476. text-align: center;
  477. }
  478. </style>