qjd.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  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. >
  12. <template #default>
  13. <view class="centerOne">
  14. <u--form ref="uForm" :model="form" :rules="rules" labelWidth="130">
  15. <view style="padding: 0px 10px 0px 10px; background: #ffffff">
  16. <view style="padding-left: 9px">
  17. <u-form-item
  18. label="请假类型:"
  19. prop="type"
  20. required
  21. :borderBottom="false"
  22. label-position="top"
  23. @click="handleAction('请假类型')"
  24. style="margin-top:10px"
  25. >
  26. <u-input
  27. v-model="form.typeName"
  28. placeholder="请选择请假类型"
  29. suffixIcon="arrow-right"
  30. suffixIconStyle="color: #909399"
  31. border="none"
  32. disabledColor="transparent"
  33. disabled
  34. />
  35. </u-form-item>
  36. </view>
  37. </view>
  38. <view style="margin-top:10px;padding: 0px 10px 0px 10px; background: #ffffff">
  39. <view style="padding-left: 9px">
  40. <u-form-item
  41. label="开始时间:"
  42. prop="startTime"
  43. required
  44. label-position="top"
  45. @click="handleDateTime('开始时间', 0, form.startTime)"
  46. >
  47. <u-input
  48. v-model="form.startTime1"
  49. placeholder="请选择开始时间"
  50. border="none"
  51. suffixIcon="arrow-right"
  52. suffixIconStyle="color: #909399;"
  53. />
  54. </u-form-item>
  55. </view>
  56. </view>
  57. <view style="margin-top:10px;padding: 0px 10px 0px 10px; background: #ffffff">
  58. <view style="padding-left: 9px">
  59. <u-form-item
  60. label="结束时间:"
  61. prop="endTime"
  62. required
  63. label-position="top"
  64. @click="handleDateTime('结束时间', 1, form.endTime)"
  65. >
  66. <u-input
  67. v-model="form.endTime1"
  68. placeholder="请选择结束时间"
  69. border="none"
  70. suffixIcon="arrow-right"
  71. suffixIconStyle="color: #909399;"
  72. />
  73. </u-form-item>
  74. </view>
  75. </view>
  76. <view style="margin-top:10px;padding: 0px 10px 0px 10px; background: #ffffff">
  77. <view style="padding-left: 9px">
  78. <u-form-item
  79. label="时长(小时):"
  80. prop="duration"
  81. required
  82. label-position="top"
  83. >
  84. <u-input
  85. v-model="form.duration"
  86. placeholder="请输入请假时长"
  87. border="none"
  88. maxlength="4"
  89. />
  90. </u-form-item>
  91. </view>
  92. </view>
  93. <view style="margin-top:10px;padding: 0px 10px 0px 10px; background: #ffffff">
  94. <view style="padding-left: 9px">
  95. <u-form-item
  96. label="请假事由:"
  97. prop="reason"
  98. required
  99. label-position="top"
  100. >
  101. <u-input
  102. v-model="form.reason"
  103. placeholder="请输入请假事由"
  104. border="none"
  105. maxlength="18"
  106. />
  107. </u-form-item>
  108. </view>
  109. </view>
  110. <view style="margin-top:10px;padding: 0px 10px 0px 10px; background: #ffffff">
  111. <view style="padding-left: 9px">
  112. <u-form-item label="图片:" prop="imgUrl" label-position="top" >
  113. <div style="margin-top: 10px">
  114. <oa-upload :uploadCount="1" :uploadImage="form.imgUrl" @uploadSuccessChange="uploadSuccessChange" @uploadDeleteChange="uploadDeleteChange"></oa-upload>
  115. </div>
  116. <!-- <view style="color: #666666">图片支持png、jpg</view> -->
  117. </u-form-item>
  118. </view>
  119. </view>
  120. </u--form>
  121. </view>
  122. <u-picker
  123. :show="actionShow"
  124. :columns="actionsList"
  125. :title="actionTitle"
  126. keyName="label"
  127. visibleItemCount="6"
  128. :defaultIndex="[actionDefaultIndex]"
  129. :closeOnClickOverlay="true"
  130. @close="actionShow = false"
  131. @cancel="actionShow = false"
  132. @confirm="selectAction"
  133. ></u-picker>
  134. <u-datetime-picker
  135. :show="showTime"
  136. v-model="timeValue"
  137. mode="datetime"
  138. @close="showTime = false"
  139. @cancel="showTime = false"
  140. @confirm="timeSubmit"
  141. :closeOnClickOverlay="true"
  142. :minDate="Number(new Date())"
  143. :maxDate="Number(new Date('2027'))"
  144. ></u-datetime-picker>
  145. <view class="app-button">
  146. <u-button type="primary" @click="handleSubmit('提交')" shape="circle"> 提交 </u-button>
  147. </view>
  148. </template>
  149. </oa-scroll>
  150. </template>
  151. <script setup>
  152. /*----------------------------------依赖引入-----------------------------------*/
  153. import { onLoad, onShow, onHide, onLaunch, onReady } from "@dcloudio/uni-app";
  154. import {
  155. ref,
  156. onMounted,
  157. inject,
  158. shallowRef,
  159. reactive,
  160. toRefs,
  161. getCurrentInstance,
  162. } from "vue";
  163. /*----------------------------------接口引入-----------------------------------*/
  164. import {
  165. companyByNameSelect,
  166. addBaseCompany,
  167. delBaseBuild,
  168. delBaseBuildExtinguish,
  169. } from "@/api/business/mhxf/unitInfoCollection";
  170. /*----------------------------------组件引入-----------------------------------*/
  171. /*----------------------------------store引入-----------------------------------*/
  172. import { useStores, commonStores } from "@/store/modules/index";
  173. /*----------------------------------公共方法引入-----------------------------------*/
  174. import {
  175. getOaFormDefinition,
  176. addQjDocument,
  177. updateQjDocument,
  178. } from "@/api/oa/approval/index.js";
  179. /*----------------------------------公共变量-----------------------------------*/
  180. const { proxy } = getCurrentInstance();
  181. const { leaveType } = proxy.useDict("leaveType");
  182. /*----------------------------------变量声明-----------------------------------*/
  183. const props = defineProps({
  184. data: {
  185. type: Object,
  186. default: Object,
  187. },
  188. })
  189. const actionTitle = ref(null);
  190. const actionsList = ref([]);
  191. const actionDefaultIndex = ref(0);
  192. const actionShow = ref(false);
  193. const uForm = ref(null);
  194. const showTime = ref(false) //时间选择显示隐藏
  195. const timeValue = ref(Number(new Date())) //时间选择值
  196. const timeTitle = ref("") //时间选择标题
  197. const state = reactive({
  198. form: {
  199. reason: "",
  200. type: undefined,
  201. typeName: undefined,
  202. formName: undefined,
  203. duration: "",
  204. imgUrl: "",
  205. startTime: "",
  206. startTime1: "",
  207. endTime: "",
  208. endTime1: "",
  209. formSign: undefined,
  210. id: undefined,
  211. },
  212. rules: {
  213. type: [{ required: true, message: "请选择请假类型", trigger: "change" }],
  214. startTime: [
  215. { required: true, message: "请假开始时间不能为空", trigger: "change" },
  216. ],
  217. endTime: [
  218. { required: true, message: "请假结束时间不能为空", trigger: "change" },
  219. ],
  220. duration: [
  221. { required: true, message: "请假时长不能为空", trigger: "blur" },
  222. ],
  223. reason: [{ required: true, message: "请假事由不能为空", trigger: "blur" }],
  224. },
  225. });
  226. const { form, rules } = toRefs(state);
  227. form.value.formSign = props.data.form.formSign
  228. form.value.id = props.data.form.id
  229. /**
  230. * @图片上传成功回调
  231. */
  232. function uploadSuccessChange(e) {
  233. form.value.imgUrl = e.url;
  234. }
  235. /**
  236. * @图片删除回调
  237. */
  238. function uploadDeleteChange(e) {
  239. form.value.imgUrl = e;
  240. }
  241. /**
  242. * @api提交
  243. */
  244. function handleSubmit(value) {
  245. console.log(form.value)
  246. uForm.value
  247. .validate()
  248. .then((res) => {
  249. // proxy.$modal.msg("校验通过");
  250. addQjDocument({
  251. id: form.value.id,
  252. formSign: form.value.formSign,
  253. type: form.value.type,
  254. startTime: form.value.startTime,
  255. endTime: form.value.endTime,
  256. duration: Number(form.value.duration),
  257. reason: form.value.reason,
  258. docStatus: 1,
  259. image: form.value.image
  260. }).then((res) => {
  261. proxy.$modal.msgSuccess("表单提交成功");
  262. uni.switchTab({
  263. url: `/pages/business/oa/toDo/index`
  264. })
  265. });
  266. })
  267. .catch((errors) => {
  268. proxy.$modal.msg("校验失败");
  269. });
  270. }
  271. /**
  272. * @action弹出框点击事件
  273. */
  274. function handleAction(value, index, ind) {
  275. if (value == "请假类型") {
  276. actionTitle.value = value;
  277. actionsList.value = [leaveType.value];
  278. actionDefaultIndex.value = 0;
  279. }
  280. actionShow.value = true;
  281. }
  282. /**
  283. * @action弹出框选择事件
  284. */
  285. function selectAction(e) {
  286. if(actionTitle.value == "请假类型"){
  287. form.value.type = e.value[0].value;
  288. form.value.typeName = e.value[0].label;
  289. }
  290. actionShow.value = false;
  291. }
  292. /**
  293. * @时间弹出框点击事件
  294. */
  295. function handleDateTime(value, index, time) {
  296. showTime.value = true;
  297. timeTitle.value = value;
  298. }
  299. /**
  300. * @时间选择器
  301. * @确定按钮事件
  302. */
  303. function timeSubmit(data) {
  304. let time = proxy.$time.getFormatterDate(data.value);
  305. let timeData = time.split(" ")[0] + " " + time.split(" ")[1]
  306. if (timeTitle.value == "开始时间") {
  307. form.value.startTime1 = timeData;
  308. form.value.startTime = timeData;
  309. } else if (timeTitle.value == "结束时间") {
  310. form.value.endTime1 = timeData;
  311. form.value.endTime = timeData;
  312. }
  313. showTime.value = false;
  314. }
  315. onLoad((options) => {});
  316. onShow(() => {
  317. //调用系统主题颜色
  318. proxy.$settingStore.systemThemeColor([1]);
  319. });
  320. </script>
  321. <style lang="scss">
  322. .unitInfoCollection-container {
  323. .centerOne,
  324. .centerTwo {
  325. .title {
  326. color: #333333;
  327. text-align: center;
  328. margin-top: 10px;
  329. }
  330. }
  331. :deep(.u-picker__view__column__item) {
  332. font-size: 13px;
  333. }
  334. }
  335. .app-button{
  336. position: fixed;
  337. bottom:10px;
  338. left:10px;
  339. width:calc(100% - 20px);
  340. button{
  341. border-radius: 10px !important;
  342. }
  343. }
  344. </style>