Onlinewarranty.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. <template>
  2. <view>
  3. <!-- 注意,如果需要兼容微信小程序,最好通过setRules方法设置rules规则 -->
  4. <u--form
  5. labelPosition="left"
  6. :model="model1"
  7. :rules="rules"
  8. ref="uForm"
  9. >
  10. <u-form-item
  11. labelWidth="150"
  12. label="报修位置"
  13. prop="userInfo.sex"
  14. borderBottom
  15. @click="showSex = true; hideKeyboard()"
  16. ref="item1"
  17. >
  18. <u--input
  19. v-model="model1.userInfo.sex"
  20. disabled
  21. placeholder="请选择报修位置"
  22. border="none"
  23. ></u--input>
  24. <u-icon
  25. slot="right"
  26. name="arrow-right"
  27. ></u-icon>
  28. </u-form-item>
  29. <u-form-item
  30. labelWidth="150"
  31. label="报修区域"
  32. prop="userInfo.sex"
  33. borderBottom
  34. @click="showSex = true; hideKeyboard()"
  35. ref="item1"
  36. >
  37. <u--input
  38. v-model="model1.userInfo.sex"
  39. disabled
  40. placeholder="请选择报修区域"
  41. border="none"
  42. ></u--input>
  43. <u-icon
  44. slot="right"
  45. name="arrow-right"
  46. ></u-icon>
  47. </u-form-item>
  48. <u-form-item
  49. labelWidth="150"
  50. label="报修类型"
  51. prop="userInfo.sex"
  52. borderBottom
  53. @click="showSex = true; hideKeyboard()"
  54. ref="item1"
  55. >
  56. <u--input
  57. v-model="model1.userInfo.sex"
  58. disabled
  59. placeholder="请选择报修类型"
  60. border="none"
  61. ></u--input>
  62. <u-icon
  63. slot="right"
  64. name="arrow-right"
  65. ></u-icon>
  66. </u-form-item>
  67. <u-form-item
  68. labelWidth="120"
  69. label="联系人"
  70. prop=""
  71. borderBottom
  72. ref="item1"
  73. >
  74. <u--input
  75. v-model="model1.userInfo.name"
  76. border="none"
  77. placeholder="请输入联系人"
  78. ></u--input>
  79. </u-form-item>
  80. <u-form-item
  81. labelWidth="150"
  82. label="联系电话"
  83. prop=""
  84. borderBottom
  85. ref="item1"
  86. >
  87. <u--input
  88. v-model="model1.userInfo.name"
  89. border="none"
  90. placeholder="请输入联系电话"
  91. ></u--input>
  92. </u-form-item>
  93. </u--form>
  94. <u-action-sheet
  95. :show="showSex"
  96. :actions="actions"
  97. title="请选择报修位置"
  98. description=""
  99. @close="showSex = false"
  100. @select="sexSelect"
  101. >
  102. </u-action-sheet>
  103. <u-action-sheet
  104. :show="showSex"
  105. :actions="actions"
  106. title="请选择报修区域"
  107. description=""
  108. @close="showSex = false"
  109. @select="sexSelect"
  110. >
  111. </u-action-sheet>
  112. <u-action-sheet
  113. :show="showSex"
  114. :actions="actions"
  115. title="请选择报修类型"
  116. description=""
  117. @close="showSex = false"
  118. @select="sexSelect"
  119. >
  120. </u-action-sheet>
  121. <u-form class="description">
  122. <u-form-item
  123. labelWidth="150"
  124. label="故障描述"
  125. prop="userInfo.name"
  126. ref="item1">
  127. </u-form-item>
  128. <u--textarea v-model="value2"
  129. placeholder="请输入故障描述"
  130. count height="250">
  131. </u--textarea>
  132. </u-form>
  133. <u-form class="upload">
  134. <u-form-item
  135. labelWidth="150"
  136. label="上传照片"
  137. prop="userInfo.name"
  138. ref="item1">
  139. </u-form-item>
  140. <u-upload
  141. style="display: flex; justify-content: center; align-items: center;"
  142. :fileList="fileList1"
  143. @afterRead="afterRead"
  144. @delete="deletePic"
  145. name="1"
  146. multiple
  147. uploadIconColor="#5776E6"
  148. :maxCount="10"
  149. width="200"
  150. height="200"
  151. ></u-upload>
  152. </u-form>
  153. <u-button type="primary" iconColor="#5776E6" text="提交"></u-button>
  154. </view>
  155. </template>
  156. <script>
  157. export default {
  158. data() {
  159. return {
  160. showSex: false,
  161. fileList1: [],
  162. value2:"",
  163. model1: {
  164. userInfo: {
  165. },
  166. },
  167. actions: [
  168. {
  169. name: '1',
  170. },
  171. {
  172. name: '2',
  173. },
  174. {
  175. name: '3',
  176. },
  177. ],
  178. rules: {
  179. // 'userInfo.name': {
  180. // type: 'string',
  181. // required: true,
  182. // message: '联系人',
  183. // trigger: ['blur', 'change']
  184. // },
  185. // 'userInfo.sex': {
  186. // type: 'string',
  187. // max: 1,
  188. // required: true,
  189. // message: '请选择男或女',
  190. // trigger: ['blur', 'change']
  191. // },
  192. },
  193. radio: '',
  194. switchVal: false
  195. };
  196. },
  197. methods: {
  198. hideKeyboard(){
  199. console.log(111);
  200. },
  201. sexSelect(e) {
  202. // this.model1.userInfo.sex = e.name
  203. // this.$refs.uForm.validateField('userInfo.sex')
  204. },
  205. // 删除图片
  206. deletePic(event) {
  207. this[`fileList${event.name}`].splice(event.index, 1)
  208. },
  209. // 新增图片
  210. async afterRead(event) {
  211. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  212. let lists = [].concat(event.file)
  213. let fileListLen = this[`fileList${event.name}`].length
  214. lists.map((item) => {
  215. this[`fileList${event.name}`].push({
  216. ...item,
  217. status: 'uploading',
  218. message: '上传中'
  219. })
  220. })
  221. for (let i = 0; i < lists.length; i++) {
  222. const result = await this.uploadFilePromise(lists[i].url)
  223. let item = this[`fileList${event.name}`][fileListLen]
  224. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  225. status: 'success',
  226. message: '',
  227. url: result
  228. }))
  229. fileListLen++
  230. }
  231. },
  232. uploadFilePromise(url) {
  233. return new Promise((resolve, reject) => {
  234. let a = uni.uploadFile({
  235. url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
  236. filePath: url,
  237. name: 'file',
  238. formData: {
  239. user: 'test'
  240. },
  241. success: (res) => {
  242. setTimeout(() => {
  243. resolve(res.data.data)
  244. }, 1000)
  245. }
  246. });
  247. })
  248. },
  249. },
  250. onReady() {
  251. //如果需要兼容微信小程序,并且校验规则中含有方法等,只能通过setRules方法设置规则。
  252. // this.$refs.uForm.setRules(this.rules)
  253. },
  254. onLoad() {
  255. }
  256. };
  257. </script>
  258. <style lang="scss">
  259. uni-text.u-icon_icon.uicon-camera-fill{
  260. span{
  261. width: 150rpx;
  262. height: 150rpx;
  263. }
  264. }
  265. </style>