info.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. <template>
  2. <view class="app-content">
  3. <view class="header">
  4. <view class="log" @tap="fall"></view>{{ navname }}
  5. </view>
  6. <view class="content">
  7. <view class="list">
  8. <p>操作位置</p>
  9. <uni-easyinput :inputBorder="false" style="line-height: 2.375rem;background-color: antiquewhite;" :placeholderStyle="placeholderStyle" :clearable="false"
  10. :styles="style" :disabled="false" v-model="location_code" type="text"
  11. placeholder="操作位置" />
  12. </uni-forms>
  13. </view>
  14. <view class="list">
  15. <p>操作描述</p>
  16. <uni-easyinput :inputBorder="false" style="line-height: 2.375rem;background-color: antiquewhite;" :placeholderStyle="placeholderStyle" :clearable="false"
  17. :styles="style" :disabled="false" v-model="location_descride" type="text"
  18. placeholder="操作描述" />
  19. </view>
  20. <view class="picturearea">
  21. <view class="name">图片上传</view>
  22. <mk-upload :imgList="imgList" @onDelete="onDelete" @onChoose="onChoose" />
  23. </view>
  24. </view>
  25. <view class="up" @tap="sendData()">提交</view>
  26. </view>
  27. </template>
  28. <script>
  29. import Nav from '../../components/header/nav.vue'
  30. import mkUpload from "@/components/mk-upload/mk-upload.vue"
  31. import {
  32. translateapp
  33. } from "@/utils/compress.js"
  34. import {
  35. pathToBase64,
  36. base64ToPath
  37. } from 'image-tools'
  38. export default {
  39. data() {
  40. return {
  41. placeholderStyle: "color:000;",
  42. style: {
  43. disableColor: "#fff",
  44. color: "#000"
  45. },
  46. isShow: true,
  47. dataheight: '20.75rem',
  48. scrollTop: 0,
  49. old: {
  50. scrollTop: 0
  51. },
  52. input: '',
  53. main: null,
  54. poll: null,
  55. filter: null,
  56. pusher: null,
  57. intentServer: null,
  58. arr: [],
  59. navname: '脱牌行李登记',
  60. imgList: [],
  61. ImgObjList: [],
  62. luggageNum: null,
  63. luggageData: {},
  64. index: 0,
  65. index1: 0,
  66. isGet:true,
  67. location_descride:"",
  68. location_code:"",
  69. picPath:""
  70. }
  71. },
  72. created(option) {},
  73. onLoad(option) {
  74. console.log(option)
  75. this.luggageNum = option.id
  76. if(this.luggageNum){
  77. this.getData()
  78. }
  79. },
  80. onUnload() {
  81. },
  82. onShow() {
  83. },
  84. onHide() {
  85. },
  86. mounted() {},
  87. components: {
  88. Nav,
  89. mkUpload
  90. },
  91. methods: {
  92. async getData(){
  93. let data = {
  94. "serviceId": 3011,
  95. "page": 1,
  96. "pageSize": 999,
  97. "dataContent": {
  98. "ID": this.luggageNum,
  99. },
  100. "event": "0"
  101. }
  102. await this.$http.httpPost('/openApi/query', data).then(res => {
  103. if (res.code == "0") {
  104. this.location_code = res.returnData[0].location_code
  105. this.location_descride = res.returnData[0].location_descride
  106. this.imgList = [res.returnData[0].picture]
  107. this.picPath = res.returnData[0].picture
  108. } else {
  109. uni.showToast({
  110. icon: 'none',
  111. title: "获取信息失败",
  112. duration: 5000
  113. });
  114. }
  115. })
  116. },
  117. async sendData() {
  118. // this.luggageData.ID = null;
  119. this.luggageData["agentNumber"] = this.$storage.getJson("users").user_name;
  120. // this.luggageData["agentNumber"] ="syq";
  121. this.luggageData["device_ID"] = uni.getDeviceInfo().deviceId;
  122. this.luggageData["secondary_code"]="H";
  123. this.luggageData["location_code"]=this.location_code;
  124. this.luggageData["location_descride"]=this.location_descride;
  125. this.luggageData["picture"]=this.picPath;
  126. let data = {
  127. "serviceId": 3011,
  128. "dataContent": [
  129. {
  130. "Value":this.luggageData
  131. }
  132. ],
  133. "event": "1"
  134. }
  135. await this.$http.httpPost('/openApi/newdata', data).then(res => {
  136. if (res.code == "0") {
  137. uni.showToast({
  138. icon: 'none',
  139. title: "操作成功",
  140. duration: 5000
  141. });
  142. } else {
  143. this.$scanAudio.src = "../../static/czsb.mp3"
  144. this.$scanAudio.play()
  145. uni.showToast({
  146. icon: 'none',
  147. title: "操作失败",
  148. duration: 5000
  149. });
  150. }
  151. })
  152. },
  153. fall() {
  154. uni.navigateBack({
  155. delta: 1
  156. })
  157. },
  158. async sendImg(upImgList) {
  159. let data = {
  160. "serviceId": 30051,
  161. "dataContent": upImgList,
  162. "event": "1"
  163. }
  164. await this.$http.httpPost('/openApi/newdata', data).then(res => {
  165. if (res.code == "0") {
  166. uni.hideLoading();
  167. this.getImgList()
  168. uni.showToast({
  169. icon: 'none',
  170. title: "上传成功",
  171. duration: 5000
  172. });
  173. } else {
  174. uni.showToast({
  175. icon: 'none',
  176. title: "上传失败",
  177. duration: 5000
  178. });
  179. }
  180. })
  181. },
  182. async getImgList() {
  183. let data = {
  184. "serviceId": 30051,
  185. "page": 1,
  186. "pageSize": 999,
  187. "dataContent": {
  188. "carrflights": this.luggageData.carrierFlights,
  189. "carrierFlightsDate": this.luggageData.carrierFlightsDate,
  190. "luggageNum": this.luggageData.luggageNum
  191. },
  192. "event": "0"
  193. }
  194. await this.$http.httpPost('/openApi/query', data).then(res => {
  195. if (res.code == "0") {
  196. this.imgList = [];
  197. this.ImgObjList = res.returnData;
  198. res.returnData.map(item => {
  199. if (item.luggagePic) {
  200. this.imgList.push(item.luggagePic);
  201. }
  202. })
  203. } else {
  204. this.imgList = [];
  205. uni.showToast({
  206. icon: 'none',
  207. title: "获取图片失败",
  208. duration: 5000
  209. });
  210. }
  211. })
  212. },
  213. async deleteImg(index) {
  214. let data = {
  215. "serviceId": 30051,
  216. "dataContent": [{
  217. "filter": [{
  218. "left": "(",
  219. "column": "id",
  220. "comparator": "=",
  221. "value": this.ImgObjList[index].id,
  222. "right": ")",
  223. "connector": "and"
  224. }]
  225. }],
  226. "event": "3"
  227. }
  228. await this.$http.httpPost('/openApi/movedata', data).then(res => {
  229. if (res.code == "0") {
  230. this.getImgList()
  231. wx.showToast({
  232. title: '删除成功',
  233. icon: 'success',
  234. duration: 3000
  235. });
  236. } else {
  237. uni.showToast({
  238. icon: 'none',
  239. title: "删除图片失败",
  240. duration: 5000
  241. });
  242. }
  243. })
  244. },
  245. onDelete(index) {
  246. console.log(index)
  247. //删除成功回调后执行 只做演示
  248. uni.showLoading({
  249. title: '删除中'
  250. });
  251. this.deleteImg(index)
  252. },
  253. onChoose(e) {
  254. console.log(e)
  255. uni.showLoading({
  256. title: '上传中'
  257. });
  258. // let upImgList = []
  259. // this.newImgList = []
  260. e.tempFilePaths.map(item => {
  261. translateapp(item, 70, imgUrl => {
  262. pathToBase64(imgUrl).then(path => {
  263. this.imgList=[path];
  264. this.picPath = path;
  265. }).catch(error => {
  266. uni.hideLoading();
  267. })
  268. })
  269. })
  270. },
  271. onPreviewTake(index) {
  272. console.log(index)
  273. wx.showActionSheet({
  274. itemList: ['预览图片', '删除图片'],
  275. success(res) {
  276. console.log(res.tapIndex)
  277. },
  278. fail(res) {
  279. console.log(res.errMsg)
  280. }
  281. })
  282. },
  283. },
  284. }
  285. </script>
  286. <style lang="scss" scoped>
  287. .app-content {
  288. >.up {
  289. position: fixed;
  290. bottom: 10px;
  291. left: calc((100% - 20.5625rem) / 2);
  292. width: 20.5625rem;
  293. height: 3rem;
  294. background: linear-gradient(179.10deg, rgba(51, 161, 165, 1.00) 11.326%, rgba(59, 111, 142, 1.00) 119.032%, rgba(59, 111, 142, 1.00) 119.032%, rgba(59, 111, 142, 1.00) 119.032%);
  295. border-radius: .25rem;
  296. color: rgb(255, 255, 255);
  297. font-family: Noto Sans SC;
  298. font-size: 1rem;
  299. margin: 0 auto;
  300. display: flex;
  301. align-items: center;
  302. justify-content: center;
  303. }
  304. >.header {
  305. width: 100%;
  306. height: 4.375rem;
  307. display: flex;
  308. justify-content: center;
  309. align-items: center;
  310. // background: rgba(49,85,99,1);
  311. color: rgb(16, 17, 22);
  312. font-family: Noto Sans SC;
  313. font-size: 1rem;
  314. position: relative;
  315. >.log {
  316. width: .375rem;
  317. height: .75rem;
  318. font-size: .75rem;
  319. position: absolute;
  320. left: 1.5rem;
  321. background: url('../../static/ico@1x.png') no-repeat;
  322. background-size: 100% 100%;
  323. }
  324. }
  325. >.craids {
  326. margin-top: 10rem;
  327. height: 5.625rem;
  328. padding: 0 2.5625rem 0 2.5625rem;
  329. display: flex;
  330. justify-content: center;
  331. align-items: center;
  332. >p {
  333. color: rgb(75, 84, 91);
  334. font-family: Noto Sans SC;
  335. font-size: 13px;
  336. font-weight: 500;
  337. }
  338. }
  339. >.content {
  340. margin-left: 1.5rem;
  341. height: calc(100vh - 8rem);
  342. overflow-x: hidden;
  343. overflow-y: auto;
  344. >.list {
  345. height: 3.375rem;
  346. display: flex;
  347. align-items: center;
  348. border-bottom: 1px solid rgb(238, 238, 238);
  349. .uni-input {
  350. width: 240px;
  351. padding-left: 10px;
  352. }
  353. >p {
  354. color: rgb(0, 0, 0);
  355. font-family: Noto Sans SC;
  356. font-size: .8125rem;
  357. font-weight: 500;
  358. margin-right: 2.1875rem;
  359. }
  360. >.listup {
  361. width: .25rem;
  362. height: .5rem;
  363. background: url('../../static/icos.png') no-repeat;
  364. background-size: 100% 100%;
  365. position: absolute;
  366. right: 1.5rem;
  367. }
  368. }
  369. >.picturearea {
  370. margin-top: 1.875rem;
  371. >.name {
  372. color: rgb(0, 0, 0);
  373. font-family: Noto Sans SC;
  374. font-size: .8125rem;
  375. font-weight: 500;
  376. margin-bottom: 1.25rem;
  377. }
  378. >.content_list {
  379. width: 100%;
  380. display: flex;
  381. margin-top: 1.25rem;
  382. >.mg {
  383. width: 5.5rem;
  384. height: 5.5rem;
  385. background: rgb(197, 207, 211);
  386. display: flex;
  387. align-items: center;
  388. justify-content: center;
  389. margin-right: .625rem;
  390. >.mg_lg {
  391. width: 1.75rem;
  392. height: 1.75rem;
  393. background: url('../../static/shi.png') no-repeat;
  394. background-size: 100% 100%;
  395. }
  396. }
  397. }
  398. }
  399. }
  400. }
  401. </style>