index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724
  1. <template>
  2. <view class="app-content">
  3. <view class="header">
  4. <view class="log" @tap="fall"></view>
  5. </view>
  6. <!-- <view class="nav">
  7. <view :class="action === index ? 'nav_lists': 'nav_list'" v-for="(item, index) in list" :key="index" @tap="lop(index)">{{item.name}}</view>
  8. </view> -->
  9. <uni-swiper-dot :info="imgList" :current="current" field="content" :mode="mode">
  10. <swiper class="swiper-box" @change="change" style="height:11rem">
  11. <swiper-item v-for="(item ,index) in imgList" :key="index" @tap="openImg(index)">
  12. <view class="swiper-item">
  13. <image style="width:100%" :src="item" mode="scaleToFill"></image>
  14. </view>
  15. </swiper-item>
  16. </swiper>
  17. </uni-swiper-dot>
  18. <view class="content" :style="{top:dataheight}">
  19. <uni-section title="行李详情" type="line"></uni-section>
  20. <view class="choice" @touchmove="movetran" v-if="luggageData">
  21. <scroll-view scroll-y="true" class="scroll-Y">
  22. <view class="list">
  23. <view class="lable">航班号</view>
  24. <span>{{luggageData.carrierFlights}}</span>
  25. </view>
  26. <view class="list">
  27. <view class="lable">航班日期</view>
  28. <span>{{luggageData.carrierFlightsDate}}</span>
  29. </view>
  30. <view class="list">
  31. <view class="lable">行李牌号</view>
  32. <span>{{luggageData.luggageNum}}</span>
  33. </view>
  34. <view class="list">
  35. <view class="lable">操作时间</view>
  36. <span>{{luggageData.processing_time}}</span>
  37. </view>
  38. <view class="list">
  39. <view class="lable">操作人</view>
  40. <span>{{luggageData.agentNumber}}</span>
  41. </view>
  42. <view class="list">
  43. <view class="lable">操作节点</view>
  44. <picker @change="bindPickerChange" :placeholderStyle="placeholderStyle" :value="index" :range-key="'nodeName'" :range="nodeList">
  45. <view class="uni-input">{{nodeNameList[index]}}</view>
  46. </picker>
  47. <view class="listup"></view>
  48. </view>
  49. <view class="list">
  50. <view class="lable">操作位置</view>
  51. <uni-easyinput :inputBorder="false" :placeholderStyle="placeholderStyle" :clearable="false" :styles="style" :disabled="false"
  52. v-model="luggageData.location_describe" type="text" placeholder="操作位置" />
  53. </uni-forms>
  54. <view class="listup"></view>
  55. </view>
  56. <view class="list">
  57. <view class="lable">发往节点</view>
  58. <picker @change="bindPickerChange2" :placeholderStyle="placeholderStyle" :value="index2" :range-key="'nodeName'" :range="nodeList">
  59. <view class="uni-input">{{nodeNameList[index2]}}</view>
  60. </picker>
  61. <view class="listup"></view>
  62. </view>
  63. <view class="list">
  64. <view class="lable">发往位置</view>
  65. <uni-easyinput :inputBorder="false" :placeholderStyle="placeholderStyle" :clearable="false" :styles="style" :disabled="false"
  66. v-model="luggageData.to_location_describe" type="text" placeholder="发往位置" />
  67. </uni-forms>
  68. <view class="listup"></view>
  69. </view>
  70. <view class="list">
  71. <view class="lable">特殊行李类型</view>
  72. <picker @change="bindPickerChange3" :placeholderStyle="placeholderStyle" :value="index3" :range-key="'specialType'" :range="specialTypeList">
  73. <view class="uni-input">{{specialTypeList[index3].specialType?specialTypeList[index3].specialType:"无"}}</view>
  74. </picker>
  75. <view class="listup"></view>
  76. </view>
  77. <view class="list">
  78. <view class="lable">异常类型</view>
  79. <picker @change="bindPickerChange4" :placeholderStyle="placeholderStyle" :value="index4" :range-key="'type'" :range="exceptionList">
  80. <view class="uni-input">{{exceptionList[index4].type?exceptionList[index4].type:"无"}}</view>
  81. </picker>
  82. <view class="listup"></view>
  83. </view>
  84. <view class="list">
  85. <view class="lable">非正常状态码</view>
  86. <picker @change="bindPickerChange5" :placeholderStyle="placeholderStyle" :value="index5" :range-key="'type'" :range="abnormalList">
  87. <view class="uni-input">{{abnormalList[index5].type?abnormalList[index5].type:"无"}}</view>
  88. </picker>
  89. <view class="listup"></view>
  90. </view>
  91. <view class="list">
  92. <view class="lable">装载序号</view>
  93. <uni-easyinput :inputBorder="false" :placeholderStyle="placeholderStyle" :clearable="false" :styles="style" :disabled="false"
  94. v-model="luggageData.loadNumber" type="text" placeholder="装载序号" />
  95. </uni-forms>
  96. <view class="listup"></view>
  97. </view>
  98. <view class="list">
  99. <view class="lable">容器编号</view>
  100. <uni-easyinput :inputBorder="false" :placeholderStyle="placeholderStyle" :clearable="false" :styles="style" :disabled="false"
  101. v-model="luggageData.container_ID" type="text" placeholder="容器编号" />
  102. </uni-forms>
  103. <view class="listup"></view>
  104. </view>
  105. <view class="list">
  106. <view class="lable">备注</view>
  107. <uni-easyinput :inputBorder="false" :placeholderStyle="placeholderStyle" :clearable="false" :styles="style" :disabled="false"
  108. v-model="luggageData.luggage_describe" type="text" placeholder="备注" />
  109. </uni-forms>
  110. <view class="listup"></view>
  111. </view>
  112. <mk-upload :imgList="imgList" @onDelete="onDelete" @onChoose="onChoose" />
  113. </scroll-view>
  114. </view>
  115. </view>
  116. <button type="primary" class="send" size="small" v-if="luggageData" @tap="sendData()">提交</button>
  117. <luanqing-date-picker ref="datePickerObj" :isSimple="mode === 'simple'" :isMultiple="mode === 'multiple'"
  118. @finishSelectDate="finishSelectDate" :defaultCheckedList="['2023-03-28','2023-09-25']">
  119. </luanqing-date-picker>
  120. <uv-datetime-picker :show="show" v-model="value1" mode="datetime" @confirm='confirm'
  121. @close='show = false'></uv-datetime-picker>
  122. </view>
  123. </template>
  124. <script>
  125. import mkUpload from "@/components/mk-upload/mk-upload.vue"
  126. import {
  127. translateapp
  128. } from "@/utils/compress.js"
  129. import {
  130. pathToBase64,
  131. base64ToPath
  132. } from 'image-tools'
  133. export default {
  134. data() {
  135. return {
  136. imgList:[],
  137. ImgObjList: [],
  138. placeholderStyle: "color:000",
  139. style: {
  140. disableColor: "#fff",
  141. color: "#000"
  142. },
  143. dataheight: '10.75rem',
  144. datatime: '2023-06-02',
  145. datacontime: '',
  146. luggageData: null,
  147. luggageDataOld:null,
  148. current: 0,
  149. mode: 'round',
  150. show: false,
  151. value1: Number(new Date()),
  152. formatter: 'yy',
  153. index:0,
  154. index2:0,
  155. index3:0,
  156. index4:0,
  157. index5:0,
  158. nodeList:[],
  159. nodeNameList:[],
  160. nextNode:null,
  161. luggageNum:null,
  162. specialTypeList:[],
  163. specialTypeNameList:[],
  164. exceptionList:[
  165. {
  166. "type":null,
  167. "name":"非异常行李"
  168. },
  169. {
  170. "type":"DPR",
  171. "name":"破损"
  172. },
  173. {
  174. "type":"AHL",
  175. "name":"少收"
  176. },
  177. {
  178. "type":"OHD",
  179. "name":"多收"
  180. }
  181. ],
  182. exceptionNameList:["非异常行李","破损","少收","多收"],
  183. abnormalList:[
  184. {
  185. "type":null,
  186. "name":"无"
  187. },
  188. {
  189. "type":"NAL",
  190. "name":"未被授权的装载"
  191. },
  192. {
  193. "type":"OFF",
  194. "name":"已卸载"
  195. },
  196. {
  197. "type":"UNS",
  198. "name":"未找到"
  199. },
  200. {
  201. "type":"OND",
  202. "name":"在场未装载,未被授权"
  203. },
  204. {
  205. "type":"ONA",
  206. "name":"在场未装载,已授权"
  207. }
  208. ],
  209. abnormalNameList:["无","未被授权的装载","已卸载","未找到","在场未装载,未被授权","在场未装载,已授权"],
  210. isShow:true,
  211. sourceData:null
  212. }
  213. },
  214. created(option) {
  215. },
  216. onLoad(option) {
  217. this.luggageNum = option.luggageNum
  218. this.getNode()
  219. this.getSpecialTypeList()
  220. this.getDetial(this.luggageNum)
  221. },
  222. onUnload() {
  223. uni.$off("scancodemsg");
  224. },
  225. onShow() {
  226. uni.$on("scancodemsg", (data) => {
  227. if (data.msg.trim().length > 9) {
  228. this.luggageNum = data.msg.trim()
  229. this.getDetial(this.luggageNum)
  230. }
  231. if(data.msg.trim().length < 9){
  232. this.luggageData.container_ID = data.msg.trim()
  233. }
  234. });
  235. },
  236. onHide() {
  237. uni.$off("scancodemsg");
  238. },
  239. components: {
  240. mkUpload
  241. },
  242. methods: {
  243. async getNode() {
  244. let data = {
  245. "serviceId": 3003,
  246. "dataContent": {},
  247. "event": "0"
  248. }
  249. await this.$http.httpPost('/openApi/query', data).then(res => {
  250. if (res.code == "0") {
  251. this.nodeList = res.returnData;
  252. this.nodeList.map(item => {
  253. this.nodeNameList.push(item.nodeName)
  254. })
  255. }
  256. })
  257. },
  258. async getSpecialTypeList(){
  259. let data = {
  260. "serviceId": 16,
  261. "dataContent": {},
  262. "event": "0"
  263. }
  264. await this.$http.httpPost('/openApi/query', data).then(res => {
  265. if (res.code == "0") {
  266. this.specialTypeList = res.returnData;
  267. this.specialTypeList.unshift(
  268. {
  269. "specialType": null,
  270. "specialTypeName": "非特殊行李",
  271. }
  272. )
  273. this.specialTypeList.map(item => {
  274. this.specialTypeNameList.push(item.specialTypeName)
  275. })
  276. }
  277. })
  278. },
  279. async getDetial(num) {
  280. let data = {
  281. "serviceId": 3002,
  282. "page": 1,
  283. "pageSize": 1,
  284. "dataContent": {
  285. "luggageNum": num, //行李号
  286. },
  287. "event": "0"
  288. }
  289. await this.$http.httpPost('/openApi/query', data).then(res => {
  290. this.luggageData = null
  291. if (res.code == "0" && res.returnData.length>0) {
  292. this.luggageData = res.returnData[0]
  293. this.getImgList()
  294. this.luggageDataOld = JSON.parse(JSON.stringify(res.returnData[0]))
  295. this.nodeList.map((item,index)=>{
  296. if(res.returnData[0].nodeCode == item.nodeCode){
  297. this.index = index
  298. this.index2 = index + 1
  299. }
  300. })
  301. this.specialTypeList.map((item,index)=>{
  302. if(res.returnData[0].specialType == item.specialType){
  303. this.index3 = index
  304. }
  305. })
  306. this.exceptionList.map((item,index)=>{
  307. if(res.returnData[0].exception_type == item.type){
  308. this.index4 = index
  309. }
  310. })
  311. this.abnormalList.map((item,index)=>{
  312. if(res.returnData[0].abnormalState == item.type){
  313. this.index5 = index
  314. }
  315. })
  316. }
  317. else{
  318. this.$scanAudio.src = "../../static/hqxl.mp3"
  319. this.$scanAudio.play()
  320. this.imgList = []
  321. uni.showToast({
  322. icon:'none',
  323. title: "未查询到该行李信息",
  324. duration: 5000
  325. });
  326. }
  327. })
  328. },
  329. async sendData(){
  330. this.luggageData.sourceAirport = this.$storage.get('airportName');
  331. this.luggageData.ID = null;
  332. this.luggageData.dataType = "BPM";
  333. this.luggageData.agentNumber = this.$storage.getJson("users").user_name;
  334. this.luggageData.device_ID = uni.getDeviceInfo().deviceId;
  335. let data = {
  336. "serviceId": 3005,
  337. "dataContent": [
  338. this.luggageData
  339. ],
  340. "event": "0"
  341. }
  342. await this.$http.httpPost('/openApi/query', data).then(res => {
  343. if (res.code == "0") {
  344. uni.showToast({
  345. icon:'none',
  346. title: "操作成功",
  347. duration: 5000
  348. });
  349. }
  350. else{
  351. this.$scanAudio.src = "../../static/czsb.mp3"
  352. this.$scanAudio.play()
  353. uni.showToast({
  354. icon:'none',
  355. title: "操作失败",
  356. duration: 5000
  357. });
  358. }
  359. })
  360. },
  361. bindPickerChange(e){
  362. this.index = e.detail.value
  363. this.luggageData.nodeCode = this.nodeList[this.index].nodeCode;
  364. this.luggageData.location_describe = this.nodeList[this.index].nodeDescribe;
  365. this.index2 = this.index + 1
  366. this.luggageData.to_location_describe = this.nodeList[this.index2].nodeDescribe;
  367. },
  368. bindPickerChange2(e){
  369. this.index2 = e.detail.value
  370. this.luggageData.to_location_describe = this.nodeList[this.index2].nodeDescribe;
  371. },
  372. bindPickerChange3(e){
  373. this.index3 = e.detail.value
  374. this.luggageData.specialType = this.specialTypeList[this.index3].specialType;
  375. },
  376. bindPickerChange4(e){
  377. this.index4 = e.detail.value
  378. this.luggageData.exception_type = this.exceptionList[this.index4].type;
  379. },
  380. bindPickerChange5(e){
  381. this.index5 = e.detail.value
  382. this.luggageData.abnormalState = this.abnormalList[this.index5].type;
  383. },
  384. confirm(e) {
  385. this.show = false
  386. console.log(e.value)
  387. let timestamp = e.value
  388. // 此处时间戳以毫秒为单位
  389. let date = new Date(parseInt(timestamp));
  390. let Year = date.getFullYear();
  391. let Moth = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1);
  392. let Day = (date.getDate() < 10 ? '0' + date.getDate() : date.getDate());
  393. let Hour = (date.getHours() < 10 ? '0' + date.getHours() : date.getHours());
  394. let Minute = (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes());
  395. let Sechond = (date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds());
  396. let GMT = Year + '-' + Moth + '-' + Day + ' ' + Hour + ':' + Minute
  397. this.datacontime = GMT
  398. },
  399. async sendImg(upImgList) {
  400. let data = {
  401. "serviceId": 30051,
  402. "dataContent": upImgList,
  403. "event": "1"
  404. }
  405. await this.$http.httpPost('/openApi/newdata', data).then(res => {
  406. if (res.code == "0") {
  407. uni.hideLoading();
  408. this.getImgList()
  409. uni.showToast({
  410. icon: 'none',
  411. title: "上传成功",
  412. duration: 5000
  413. });
  414. } else {
  415. uni.showToast({
  416. icon: 'none',
  417. title: "上传失败",
  418. duration: 5000
  419. });
  420. }
  421. })
  422. },
  423. async getImgList() {
  424. let data = {
  425. "serviceId": 30051,
  426. "page": 1,
  427. "pageSize": 999,
  428. "dataContent": {
  429. "carrflights": this.luggageData.carrierFlights,
  430. "carrierFlightsDate": this.luggageData.carrierFlightsDate,
  431. "luggageNum": this.luggageData.luggageNum
  432. },
  433. "event": "0"
  434. }
  435. await this.$http.httpPost('/openApi/query', data).then(res => {
  436. if (res.code == "0") {
  437. this.imgList = [];
  438. this.ImgObjList = res.returnData;
  439. res.returnData.map(item => {
  440. if (item.luggagePic) {
  441. this.imgList.push(item.luggagePic);
  442. }
  443. })
  444. } else {
  445. uni.showToast({
  446. icon: 'none',
  447. title: "获取图片失败",
  448. duration: 5000
  449. });
  450. }
  451. })
  452. },
  453. async deleteImg(index) {
  454. let data = {
  455. "serviceId": 30051,
  456. "dataContent": [{
  457. "filter": [{
  458. "left": "(",
  459. "column": "id",
  460. "comparator": "=",
  461. "value": this.ImgObjList[index].id,
  462. "right": ")",
  463. "connector": "and"
  464. }]
  465. }],
  466. "event": "3"
  467. }
  468. await this.$http.httpPost('/openApi/movedata', data).then(res => {
  469. if (res.code == "0") {
  470. this.getImgList()
  471. wx.showToast({
  472. title: '删除成功',
  473. icon: 'success',
  474. duration: 3000
  475. });
  476. } else {
  477. uni.showToast({
  478. icon: 'none',
  479. title: "删除图片失败",
  480. duration: 5000
  481. });
  482. }
  483. })
  484. },
  485. onDelete(index) {
  486. console.log(index)
  487. //删除成功回调后执行 只做演示
  488. uni.showLoading({
  489. title: '删除中'
  490. });
  491. this.deleteImg(index)
  492. },
  493. onChoose(e) {
  494. console.log(e)
  495. uni.showLoading({
  496. title: '上传中'
  497. });
  498. // let upImgList = []
  499. // this.newImgList = []
  500. e.tempFilePaths.map(item => {
  501. translateapp(item, 70, imgUrl => {
  502. pathToBase64(imgUrl).then(path => {
  503. let upImgList = []
  504. let newData = {
  505. "carrflights": this.luggageData.carrierFlights,
  506. "carrierFlightsDate": this.luggageData.carrierFlightsDate,
  507. "luggageNum": this.luggageData.luggageNum,
  508. "luggagePic": path,
  509. }
  510. // this.newImgList.push(path)
  511. upImgList.push(newData)
  512. this.sendImg(upImgList)
  513. // upImgList.push(newData)
  514. }).catch(error => {
  515. uni.hideLoading();
  516. })
  517. })
  518. })
  519. },
  520. onPreviewTake(index) {
  521. console.log(index)
  522. wx.showActionSheet({
  523. itemList: ['预览图片', '删除图片'],
  524. success(res) {
  525. console.log(res.tapIndex)
  526. },
  527. fail(res) {
  528. console.log(res.errMsg)
  529. }
  530. })
  531. },
  532. openImg(index){
  533. const imgList = this.imgList;
  534. const isReverse = false;
  535. const currentIndex = isReverse ? (imgList.length - index) - 1 : index
  536. const imgLists = isReverse ? imgList.reverse() : imgList;
  537. uni.previewImage({
  538. current: currentIndex,
  539. urls: imgLists
  540. });
  541. },
  542. finishSelectDate(e) {
  543. this.datatime = e[0]
  544. console.error("选择了日期:", e);
  545. },
  546. movetran(e) {
  547. let arr = uni.getSystemInfoSync().windowHeight;
  548. this.dataheight = (e.changedTouches[0].clientY / 16) + 'rem'
  549. if (e.changedTouches[0].clientY / 16 > 10.75) {
  550. this.dataheight = 10.75 + 'rem'
  551. } else if (e.changedTouches[0].clientY / 16 < 3.75) {
  552. this.dataheight = 3.75 + 'rem'
  553. }
  554. },
  555. uplist() {
  556. uni.redirectTo({
  557. url: "/pages/loadingdetails/index"
  558. })
  559. },
  560. lop(index) {
  561. this.action = index
  562. },
  563. seach() {
  564. uni.redirectTo({
  565. url: "/pages/search/index"
  566. })
  567. },
  568. fall() {
  569. uni.navigateBack({
  570. delta: 1
  571. })
  572. },
  573. change(e) {
  574. this.current = e.detail.current;
  575. }
  576. },
  577. }
  578. </script>
  579. <style lang="scss" scoped>
  580. .app-content {
  581. >.send{
  582. position: fixed;
  583. bottom: 10px;
  584. left: calc((100% - 20.5625rem) / 2);
  585. width: 20.5625rem;
  586. height: 3rem;
  587. 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%);
  588. border-radius: .25rem;
  589. color: rgb(255, 255, 255);
  590. font-family: Noto Sans SC;
  591. font-size: 1rem;
  592. margin: 0 auto;
  593. display: flex;
  594. align-items: center;
  595. justify-content: center;
  596. }
  597. >.header {
  598. width: 100%;
  599. height: 4.375rem;
  600. display: flex;
  601. justify-content: space-between;
  602. align-items: center;
  603. // background: rgba(49,85,99,1);
  604. color: rgb(16, 17, 22);
  605. font-family: Noto Sans SC;
  606. font-size: 1rem;
  607. position: fixed;
  608. left: 0;
  609. top: 0;
  610. z-index: 1;
  611. >.log {
  612. width: .375rem;
  613. height: .75rem;
  614. font-size: .75rem;
  615. position: absolute;
  616. left: 1.5rem;
  617. background: url('../../static/ico@1x.png') no-repeat;
  618. background-size: 100% 100%;
  619. }
  620. >.up {
  621. width: .8456rem;
  622. height: .8456rem;
  623. position: absolute;
  624. right: 1.5rem;
  625. background: url('../../static/search.png') no-repeat;
  626. background-size: 100% 100%;
  627. // color: rgb(37, 121, 160);
  628. // font-family: Noto Sans SC;
  629. // font-size: .875rem;
  630. // font-weight: 500;
  631. }
  632. }
  633. >.content {
  634. width: 100%;
  635. // height: calc(100vh - 20.9375rem - 4.375rem);
  636. padding-bottom: 0;
  637. position: absolute;
  638. bottom: 0;
  639. top: 10.75rem;
  640. border-radius: 6px 6px 0px 0px;
  641. overflow: hidden;
  642. background: rgb(255, 255, 255);
  643. >.choice {
  644. width: 100%;
  645. // height: 3.75rem;
  646. display: flex;
  647. align-items: center;
  648. padding: 0 0 0 0.8rem;
  649. box-sizing: border-box;
  650. >.scroll-Y {
  651. // height: calc(100% - 2.5rem - 2.75rem - 2.25rem - 2.25rem);
  652. width: 100%;
  653. height: 27.75rem;
  654. .list {
  655. height: 3.375rem;
  656. display: flex;
  657. align-items: center;
  658. border-bottom: 1px solid rgb(238, 238, 238);
  659. position: relative;
  660. color: rgb(0, 0, 0);
  661. font-family: Noto Sans SC;
  662. font-size: 13px;
  663. font-weight: 400;
  664. .uni-input{
  665. width: 200px;
  666. }
  667. >.lable {
  668. color: rgb(0, 0, 0);
  669. font-family: Noto Sans SC;
  670. font-size: 13px;
  671. font-weight: 500;
  672. line-height: 19px;
  673. letter-spacing: 0px;
  674. text-align: left;
  675. width: 6rem;
  676. }
  677. >.listup {
  678. width: .25rem;
  679. height: .5rem;
  680. background: url('../../static/icos.png') no-repeat;
  681. background-size: 100% 100%;
  682. position: absolute;
  683. right: 1.5rem;
  684. }
  685. }
  686. }
  687. }
  688. .but {
  689. width: 20.5625rem;
  690. height: 2.5rem;
  691. 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%);
  692. border-radius: .25rem;
  693. color: rgb(255, 255, 255);
  694. font-family: Noto Sans SC;
  695. font-size: 1rem;
  696. margin: 0 auto;
  697. display: flex;
  698. align-items: center;
  699. justify-content: center;
  700. margin-top: 0.25rem;
  701. margin-bottom: 2.25rem;
  702. }
  703. }
  704. }
  705. </style>