Onlinewarranty.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. <template>
  2. <view class="OutermostLayer">
  3. <view class="wfgz">
  4. <!-- 注意,如果需要兼容微信小程序,最好通过setRules方法设置rules规则 -->
  5. <u--form labelPosition="left" :model="model1" :rules="rules" ref="form1">
  6. <!-- <u-form-item labelWidth='180' label="任务名称:" prop="userInfo.contactPerson" borderBottom ref="item1">
  7. <u--input v-model="model1.userInfo.contactPerson" border="none"></u--input>
  8. </u-form-item> -->
  9. <u-form-item labelWidth='180' label="报修位置:" prop="userInfo.repairPositionName" borderBottom
  10. @click="showfloor = true;" ref="item1" :required=true>
  11. <u--input v-model="model1.userInfo.repairPositionName" disabled disabledColor="#ffffff"
  12. placeholder="请选择报修位置" border="none"></u--input>
  13. <u-icon slot="right" contactPerson="arrow-right"></u-icon>
  14. </u-form-item>
  15. <u-form-item labelWidth='180' label="报修区域:" prop="userInfo.repairRegionName" borderBottom
  16. @click="showSex = true;" ref="item1" :required=true>
  17. <u--input v-model="model1.userInfo.repairRegionName" disabled disabledColor="#ffffff"
  18. placeholder="请选择报修区域" border="none"></u--input>
  19. <u-icon slot="right" contactPerson="arrow-right"></u-icon>
  20. </u-form-item>
  21. <u-form-item labelWidth='180' label="报修类型:" prop="userInfo.repairTypeName" borderBottom
  22. @click="showtaskdegree = true;" ref="item1" :required=true>
  23. <u--input v-model="model1.userInfo.repairTypeName" disabled disabledColor="#ffffff"
  24. placeholder="请选择报修类型" border="none"></u--input>
  25. <u-icon slot="right" contactPerson="arrow-right"></u-icon>
  26. </u-form-item>
  27. <u-form-item labelWidth='180' label="联系人:" prop="userInfo.contactPerson" borderBottom ref="item1"
  28. :required=true>
  29. <u--input v-model="model1.userInfo.contactPerson" border="none"></u--input>
  30. </u-form-item>
  31. <u-form-item labelWidth='180' label="联系电话:" prop="userInfo.contactPhone" borderBottom
  32. ref="item1" :required=true>
  33. <u--input v-model="model1.userInfo.contactPhone" border="none"></u--input>
  34. </u-form-item>
  35. <u-form-item labelWidth='180' label="故障描述:" prop="userInfo.faultDes" borderBottom ref="item1"
  36. :required=true>
  37. <u--input v-model="model1.userInfo.faultDes" border="none"></u--input>
  38. </u-form-item>
  39. <u-form-item labelWidth='180' label="上传照片:" prop="userInfo.faultPics" borderBottom ref="item1">
  40. <view class="uploadPart">
  41. <view class="allimg" v-for="img in fileList1">
  42. <image :src="img" mode="heightFix" class="newimg" >
  43. </image>
  44. <u-icon @click="deletePic(img)" class="mytrash" name="trash" color="red" size="38"></u-icon>
  45. </view>
  46. <span @click="uploadImg" class="uploadBox" v-if="fileList1.length<4"><u-icon name="plus"></u-icon></span>
  47. </view>
  48. </u-form-item>
  49. </u--form>
  50. <view class="guidang">
  51. <view class="queding">
  52. <u-button type="primary" :plain="true" text="返回" @click="returndata"></u-button>
  53. </view>
  54. <view class="queding">
  55. <u-button type="primary" text="提交" @click="editdata"></u-button>
  56. </view>
  57. </view>
  58. </view>
  59. <u-picker @cancel='showtaskdegree = false' :itemHeight="80" @confirm='degreeconfirm' :show="showtaskdegree"
  60. :columns="columnshowtaskdegree" keyName="label">
  61. </u-picker>
  62. <u-picker @cancel='showSex = false' :itemHeight="80" @confirm='typeconfirm' :show="showSex" :columns="columnsquyu"
  63. keyName="label">
  64. </u-picker>
  65. <u-picker :show="showfloor" ref="uPicker" :itemHeight="80" :loading="loading" @confirm="confirmfloor" @cancel='cancelfloor'
  66. keyName="orgName" :columns="columns" @change="changeHandler"></u-picker>
  67. </view>
  68. </template>
  69. <script>
  70. const BaseApi = require("@/http/baseApi.js");
  71. export default {
  72. components: {},
  73. data() {
  74. return {
  75. uploadUrl:BaseApi.BaseApi + '/uploadFile',
  76. loading: false,
  77. fileList1: [],
  78. xiangji: require('@/static/index/xj.png'),
  79. columns: [
  80. [],
  81. [],
  82. []
  83. ],
  84. columnData: [],
  85. columnDatalist: [],
  86. showfloor: false,
  87. myposition: '',
  88. showSex: false,
  89. showday: false,
  90. showPicker: false,
  91. showtaskdegree: false,
  92. showtaskpeople: false,
  93. model1: {
  94. userInfo: {
  95. id: "",
  96. buildingId: "", // 楼栋ID
  97. storeyId: "", // 层数ID
  98. houseId: "", // 房间ID
  99. repairPosition: "", // 房间ID
  100. repairPositionName: "", //报修位置名称
  101. repairRegion: '', //报修修区域
  102. repairRegionName: "", //报修区域名称
  103. repairType: '', //报修类型
  104. repairTypeName: "", //报修类型
  105. contactPerson: "", //联系人
  106. contactPhone: "", //电话
  107. faultDes: "", // 故障描述
  108. faultPics: "", //图片
  109. },
  110. },
  111. columnsquyu: [
  112. [{
  113. label: '公共区域',
  114. id: 1
  115. }, {
  116. label: '室内',
  117. id: 2
  118. }]
  119. ],
  120. columnshowtaskdegree: [
  121. [{
  122. label: '水',
  123. id: 1
  124. }, {
  125. label: '电',
  126. id: 2
  127. },
  128. {
  129. label: '其他',
  130. id: 3
  131. },
  132. ]
  133. ],
  134. rules: {
  135. 'userInfo.contactPerson': {
  136. type: 'string',
  137. required: true,
  138. message: '请填写联系人',
  139. trigger: ['blur', 'change']
  140. },
  141. 'userInfo.faultDes': {
  142. type: 'string',
  143. required: true,
  144. message: '请填写故障描述',
  145. trigger: ['blur', 'change']
  146. },
  147. 'userInfo.contactPhone': [{
  148. required: true,
  149. message: '请填写联系电话',
  150. trigger: ['change', 'blur'],
  151. },
  152. {
  153. // 自定义验证函数,见上说明
  154. validator: (rule, value, callback) => {
  155. // 上面有说,返回true表示校验通过,返回false表示不通过
  156. // uni.$u.test.mobile()就是返回true或者false的
  157. return uni.$u.test.mobile(value);
  158. },
  159. message: '手机号码不正确',
  160. // 触发器可以同时用blur和change
  161. trigger: ['change', 'blur'],
  162. }
  163. ],
  164. 'userInfo.repairRegionName': {
  165. type: 'string',
  166. required: true,
  167. message: '请选择报修区域',
  168. trigger: ['blur', 'change']
  169. },
  170. 'userInfo.repairPositionName': {
  171. type: 'string',
  172. required: true,
  173. message: '请选择报修位置',
  174. trigger: ['blur', 'change']
  175. },
  176. 'userInfo.repairTypeName': {
  177. type: 'string',
  178. required: true,
  179. message: '请选择报修类型',
  180. trigger: ['blur', 'change']
  181. },
  182. },
  183. };
  184. },
  185. onLoad() {
  186. this.getfloor();
  187. // this.loadmore();
  188. },
  189. methods: {
  190. // 删除图片
  191. deletePic(event) {
  192. this.fileList1.splice(event.index, 1)
  193. },
  194. // 新增图片
  195. uploadImg() {
  196. uni.chooseImage({
  197. count:4,
  198. success: (chooseImageRes) => {
  199. const tempFilePaths = chooseImageRes.tempFilePaths;
  200. for(let i=0;i<tempFilePaths.length;i++) {
  201. uni.uploadFile({
  202. url: BaseApi.BaseApi + '/uploadFile',
  203. filePath: tempFilePaths[i],
  204. name: 'file',
  205. formData: {
  206. 'user': 'test'
  207. },
  208. success: (uploadFileRes) => {
  209. //console.log(uploadFileRes);
  210. this.fileList1.push(JSON.parse(uploadFileRes.data).data)
  211. console.log(this.fileList1);
  212. this.model1.userInfo.faultPics=this.fileList1.join(',')
  213. }
  214. });
  215. }
  216. }
  217. });
  218. },
  219. changeHandler(e) {
  220. const {
  221. columnIndex,
  222. value,
  223. values, // values为当前变化列的数组内容
  224. index,
  225. indexs,
  226. picker = this.$refs.uPicker
  227. } = e
  228. // console.log('999999', columnIndex, index, indexs)
  229. if (columnIndex == 0) {
  230. // this.loading = true
  231. picker.setColumnValues(1, this.alldata[index].childrenList)
  232. if (this.alldata[indexs[0]].childrenList[0].childrenList == null) {
  233. //console.log('66666', )
  234. picker.setColumnValues(2, [])
  235. } else {
  236. // console.log('00000000', )
  237. picker.setColumnValues(2, this.alldata[indexs[0]].childrenList[0].childrenList)
  238. }
  239. } else if (columnIndex == 1) {
  240. // picker为选择器this实例,变化第三列对应的选项
  241. // console.log('2222222',this.alldata[indexs[0]].childrenList[indexs[1]])
  242. if (this.alldata[indexs[0]].childrenList[indexs[1]].childrenList == null) {
  243. picker.setColumnValues(2, [])
  244. } else {
  245. picker.setColumnValues(2, this.alldata[indexs[0]].childrenList[indexs[1]].childrenList)
  246. }
  247. }
  248. },
  249. confirmfloor(e) {
  250. // console.log('222222', e.value)
  251. if(e.value[2]==undefined){
  252. this.model1.userInfo.repairPositionName = e.value[0].orgName + '/' + e.value[1].orgName ;
  253. this.model1.userInfo.buildingId = e.value[0].orgId;
  254. this.model1.userInfo.storeyId = e.value[1].orgId;
  255. this.model1.userInfo.houseId = e.value[1].orgId;
  256. this.model1.userInfo.repairPosition =e.value[1].orgId;
  257. }else{
  258. this.model1.userInfo.repairPositionName = e.value[0].orgName + '/' + e.value[1].orgName + '/' + e.value[2].orgName;
  259. this.model1.userInfo.buildingId = e.value[0].orgId;
  260. this.model1.userInfo.storeyId = e.value[1].orgId;
  261. this.model1.userInfo.houseId = e.value[2].orgId;
  262. this.model1.userInfo.repairPosition = e.value[2].orgId;
  263. }
  264. this.showfloor = false;
  265. // this.getalldata();
  266. },
  267. cancelfloor() {
  268. this.showfloor = false;
  269. },
  270. getfloor() {
  271. this.$api.get('/control/getOrgStructureTree', {})
  272. .then(res => {
  273. if (res.data.code == 0) {
  274. //this.dataForm.projectId = res.data.data[0].orgId;
  275. // this.model1.userInfo.myposition = res.data.data[0].orgcontactPerson;
  276. this.alldata = res.data.data[0].childrenList;
  277. this.columns = [
  278. this.alldata,
  279. this.alldata[0].childrenList,
  280. this.alldata[0].childrenList[0].childrenList
  281. ]
  282. } else {
  283. this.showdct = true
  284. }
  285. })
  286. },
  287. onShowDatePicker() { //显示
  288. this.showPicker = true;
  289. // this.value =this.model1.userInfo.repairPositioncontactPerson;
  290. },
  291. returndata() {
  292. uni.navigateBack({
  293. delta: 1
  294. });
  295. },
  296. editdata() {
  297. //console.log('111111111111111111', this.model1.userInfo)
  298. this.$refs.form1.validate().then(res => {
  299. // uni.$u.toast('校验通过')
  300. this.$api.post('/repairorder',this.model1.userInfo)
  301. .then(res=>{
  302. uni.navigateBack({
  303. delta: 1
  304. });
  305. })
  306. }).catch(errors => {
  307. uni.$u.toast('校验失败')
  308. })
  309. },
  310. typeconfirm(e) {
  311. // console.log('111111111111111111', e.value[0])
  312. this.model1.userInfo.repairRegion = e.value[0].id;
  313. this.model1.userInfo.repairRegionName = e.value[0].label;
  314. this.showSex = false;
  315. // this.model1.userInfo.sex = e.contactPerson
  316. this.$refs.form1.validateField('userInfo.repairRegionName')
  317. },
  318. degreeconfirm(e) {
  319. //console.log('111111111111111111', e.value[0].label)
  320. this.model1.userInfo.repairType = e.value[0].id;
  321. this.model1.userInfo.repairTypeName = e.value[0].label;
  322. this.showtaskdegree = false;
  323. // this.model1.userInfo.sex = e.contactPerson
  324. this.$refs.form1.validateField('userInfo.repairTypeName')
  325. },
  326. },
  327. onReady() {
  328. //如果需要兼容微信小程序,并且校验规则中含有方法等,只能通过setRules方法设置规则。
  329. this.$refs.form1.setRules(this.rules)
  330. },
  331. };
  332. </script>
  333. <style>
  334. .guidang {
  335. display: flex;
  336. justify-content: space-between;
  337. align-items: center;
  338. margin-top: 40rpx;
  339. }
  340. .queding {
  341. width: 40%;
  342. }
  343. .wfgz {
  344. margin: 20rpx;
  345. margin-top: 0px;
  346. }
  347. .uploadBox{
  348. width: 50px;
  349. height: 50px;
  350. line-height: 50px;
  351. text-align: center;
  352. border: 1px solid #ddd;
  353. display: flex;
  354. justify-content: center;
  355. align-items: center;
  356. border-radius: 3px;
  357. }
  358. .uploadPart{display: flex;
  359. align-items: center;
  360. }
  361. .newimg{
  362. width:120rpx;height:120rpx;margin-right: 10rpx;
  363. }
  364. .allimg{
  365. width:140rpx;height:140rpx;
  366. position: relative;
  367. }
  368. .mytrash{
  369. position: absolute;
  370. top: 2px;
  371. right: 10px;
  372. }
  373. </style>