InspectionList.uvue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. <template>
  2. <view class="record-card flex-row">
  3. <view class="tag-circle" v-for="(item, index) in initRecords" :key="index" @click="tabsClick(parseInt(item.no))"
  4. :class="{'checked-tag' : parseInt(item.no) == current}">
  5. <text class="circle" :class="{
  6. 'bg-green': item.result == '合格',
  7. 'bg-red': item.result == '不合格',
  8. 'bg-black': item.result != '不合格' && item.result != '合格'
  9. }">{{item.no}}</text>
  10. </view>
  11. </view>
  12. <!-- #ifdef APP -->
  13. <scroll-view style="flex:1">
  14. <!-- #endif -->
  15. <view v-if="reportList.length" class="card-list">
  16. <!-- 注意:v-for 遍历 reportList 时,item 是响应式的,但内部字段需通过计算属性转换 -->
  17. <view class="card" v-for="item in reportList" :key="item.no" v-show="current == parseInt(item.no)">
  18. <!-- 序号:绑定计算属性 parsedMinNum(对应 item.minNum) -->
  19. <view class="info-row">
  20. <text class="label">序号</text>
  21. <view class="value">
  22. {{getParsedValue(item.no)}}
  23. </view>
  24. </view>
  25. <view class="info-row">
  26. <text class="label">产品码</text>
  27. <view class="value">
  28. {{item.prodno}}
  29. </view>
  30. </view>
  31. <view class="info-row">
  32. <text class="label">检测项目</text>
  33. <view class="value">
  34. {{item.invname}}
  35. </view>
  36. </view>
  37. <view class="info-row">
  38. <text class="label">性质</text>
  39. <view class="value">
  40. {{item.nature}}
  41. </view>
  42. </view>
  43. <!-- 上限要求:绑定计算属性 parsedMinNum -->
  44. <view class="info-row">
  45. <text class="label">上限要求</text>
  46. <view class="value">
  47. {{item.maxNum}}
  48. </view>
  49. </view>
  50. <!-- 下限要求:绑定计算属性 parsedMaxNum(对应 item.maxNum) -->
  51. <view class="info-row">
  52. <text class="label">下限要求</text>
  53. <view class="value">
  54. {{item.minNum}}
  55. </view>
  56. </view>
  57. <view class="divider"></view>
  58. <!-- 实测值小:绑定计算属性 parsedMeasuredValue(对应 item.measuredvalue) -->
  59. <view class="info-row">
  60. <text class="label">实测值小</text>
  61. <view class="value">
  62. <input type="digit" class="surround uni-input number-input" v-model="item.measuredvalue" @confirm="minNumberChange"></input>
  63. </view>
  64. </view>
  65. <!-- 实测值大:绑定计算属性 parsedMeasuredMaxValue(对应 item.measuredvaluemax) -->
  66. <view class="info-row">
  67. <text class="label">实测值大</text>
  68. <view class="value">
  69. <input type="digit" class="surround uni-input number-input" v-model="item.measuredvaluemax" @confirm="maxNumberChange"></input>
  70. </view>
  71. </view>
  72. <view class="info-row">
  73. <text class="label">结论</text>
  74. <view class="value">
  75. <radio-group class="radio-group-horizontal" @change="resultChange" disabled = "item.nature != '定性'" >
  76. <radio class="radio-group-horizontal-rg" value="合格" :checked="item.result == '合格'">合格</radio>
  77. <radio class="radio-group-horizontal-rg" value="不合格" :checked="item.result == '不合格'">不合格</radio>
  78. </radio-group>
  79. </view>
  80. </view>
  81. <view class="info-row">
  82. <text class="label">备注</text>
  83. <view class="value">
  84. <input v-model="item.memo" class="surround uni-input" @confirm="remarksChange"></input>
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. <!-- 空状态 -->
  90. <view v-else class="empty-card">
  91. <image src="/static/image/empty.png" class="empty-img" />
  92. <text class="empty-text">暂无检查检验记录</text>
  93. </view>
  94. <view class="info-row btn-panel">
  95. <button class="btn btn-first" @click="tabsClick(current-1)" v-if="current > 1">
  96. 前一项
  97. </button>
  98. <button class="btn btn-second" @click="tabsClick(current+1)" v-if="current < maxcount">
  99. 下一项
  100. </button>
  101. </view>
  102. <!-- #ifdef APP -->
  103. </scroll-view>
  104. <!-- #endif -->
  105. </template>
  106. <script setup>
  107. import { ref, computed } from 'vue' // 1. 引入 computed(计算属性核心)
  108. import { getJoinList, QcRecord, recordStatusDict, updateData } from '@/api/work';
  109. // 存储页面参数
  110. let pdid = "";
  111. let senum = "";
  112. // 检查项目最大数量(改为 ref 响应式,避免值变化不更新)
  113. const maxcount = ref(5)
  114. const current = ref(1)
  115. const reportList = ref<QcRecord[]>([])
  116. const initRecords = ref<QcRecord[]>([])
  117. // 下拉框选项数组 - 定性分析选项
  118. const array = ref(['合格', '不合格']);
  119. //自定义返回行为,覆盖系统默认返回按钮
  120. const backPressOptions = reactive({
  121. from: 'backbutton'
  122. } as OnBackPressOptions)
  123. onBackPress((options : OnBackPressOptions) : boolean | null => {
  124. uni.navigateTo({
  125. url: `/pages/work/download/DownloadDetail?id=${pdid}`,
  126. // 修改动画方向为从左到右退回
  127. animationType: 'slide-in-left', // 使用从左到右滑出的动画效果
  128. animationDuration: 300 // 动画持续时间,单位ms
  129. })
  130. // 返回true表示拦截默认返回行为
  131. return true
  132. })
  133. const getParsedValue = computed(() => {
  134. return (value : string | number) => {
  135. if (typeof value === 'number') {
  136. return value;
  137. }
  138. if (typeof value === 'string') {
  139. const num = parseFloat(value);
  140. return isNaN(num) ? 0 : num;
  141. }
  142. return 0;
  143. }
  144. });
  145. // 处理picker组件的点击事件,确保在安卓设备上可以正常触发
  146. const handlePickerClick = (e: any) => {
  147. // 这里可以添加一些处理逻辑,确保在安卓设备上可以正常打开picker
  148. console.log('Picker clicked');
  149. };
  150. // 4. 切换标签时更新 reportList(使用响应式的 initRecords)
  151. const tabsClick = (obj : number) => {
  152. current.value = obj;
  153. const filtered = initRecords.value.filter(item =>
  154. getParsedValue.value(item.no) === current.value
  155. );
  156. reportList.value = filtered;
  157. }
  158. const refreshRecords = (index : number) => {
  159. // 清空现有数据(响应式数组需操作 .value)
  160. initRecords.value = [];
  161. // #ifdef APP-ANDROID
  162. getJoinList(
  163. 'app_task_record as r',
  164. 'app_task_record_item as i',
  165. 'r.*,i.*',
  166. 'r.sxid=i.psxid',
  167. 'pdid',
  168. pdid,
  169. null
  170. ).then((res : UTSJSONObject) => {
  171. const dataList = res?.['data'] as UTSJSONObject[] ?? []
  172. if (dataList.length > 0) {
  173. dataList.forEach(item => {
  174. if (item != null) {
  175. const record = JSON.parse<QcRecord>(item.toJSONString());
  176. if (record != null) {
  177. initRecords.value.push(record)
  178. // 计算 maxcount 时使用数值转换,避免字符串干扰
  179. const noValue = getParsedValue.value(record.no)
  180. if (noValue > maxcount.value) {
  181. maxcount.value = noValue;
  182. }
  183. }
  184. }
  185. });
  186. }
  187. // 对initRecords按照no字段进行升序排序
  188. if (initRecords.value.length > 0) {
  189. initRecords.value.sort((a, b) => {
  190. const noA = getParsedValue.value(a.no);
  191. const noB = getParsedValue.value(b.no);
  192. return noA - noB;
  193. });
  194. current.value = index > 0 ? index : getParsedValue.value(initRecords.value[0].no);
  195. const filtered = initRecords.value.filter(item =>
  196. getParsedValue.value(item.no) === current.value
  197. );
  198. reportList.value = filtered;
  199. }
  200. });
  201. // #endif
  202. }
  203. const resultChange = (event : UniRadioGroupChangeEvent) => {
  204. // 获取当前选中的报告项
  205. const currentItem = reportList.value.find(item => parseInt(item.no) === current.value);
  206. if (currentItem != null) {
  207. // 更新结果值
  208. currentItem.result = event.detail.value;
  209. //更新数据库
  210. let updatedData = "result='" + currentItem.result + "'"
  211. updateData('app_task_record_item', updatedData, 'sxid', currentItem.sxid.toString()).then((res : UTSJSONObject) => {
  212. let data = res?.['data'] as boolean ?? false
  213. if (data != null && data== true) {
  214. uni.showToast({
  215. title: "保存成功!",
  216. });
  217. }
  218. });
  219. }
  220. }
  221. const minNumberChange = (event : UniInputConfirmEvent) => {
  222. // 获取当前选中的报告项
  223. const currentItem = reportList.value.find(item => parseInt(item.no) === current.value);
  224. if (currentItem != null) {
  225. // 更新结果值
  226. currentItem.measuredvalue = event.detail.value;
  227. //更新数据库
  228. let updatedData = "measuredvalue='" + currentItem.measuredvalue + "'"
  229. updateData('app_task_record_item', updatedData, 'sxid', currentItem.sxid.toString()).then((res : UTSJSONObject) => {
  230. let data = res?.['data'] as boolean ?? false
  231. if (data != null && data== true) {
  232. uni.showToast({
  233. title: "保存成功!",
  234. });
  235. }
  236. });
  237. }
  238. }
  239. const maxNumberChange = (event : UniInputConfirmEvent) => {
  240. // 获取当前选中的报告项
  241. const currentItem = reportList.value.find(item => parseInt(item.no) === current.value);
  242. if (currentItem != null) {
  243. // 更新结果值
  244. currentItem.measuredvaluemax = event.detail.value;
  245. //更新数据库
  246. let updatedData = "measuredvaluemax='" + currentItem.measuredvaluemax + "'"
  247. updateData('app_task_record_item', updatedData, 'sxid', currentItem.sxid.toString()).then((res : UTSJSONObject) => {
  248. let data = res?.['data'] as boolean ?? false
  249. if (data != null && data== true) {
  250. uni.showToast({
  251. title: "保存成功!",
  252. });
  253. }
  254. });
  255. }
  256. }
  257. const remarksChange = (event : UniInputConfirmEvent) => {
  258. // 获取当前选中的报告项
  259. const currentItem = reportList.value.find(item => parseInt(item.no) === current.value);
  260. if (currentItem != null) {
  261. // 更新结果值
  262. currentItem.memo = event.detail.value;
  263. //更新数据库
  264. let updatedData = "memo='" + currentItem.memo + "'"
  265. updateData('app_task_record_item', updatedData, 'sxid', currentItem.sxid.toString()).then((res : UTSJSONObject) => {
  266. let data = res?.['data'] as boolean ?? false
  267. if (data != null && data== true) {
  268. uni.showToast({
  269. title: "保存成功!",
  270. });
  271. }
  272. });
  273. }
  274. }
  275. onLoad((options) => {
  276. pdid = options?.pdid ?? "1"
  277. senum = options?.senum ?? "1"
  278. // 加载初始数据(转换 senum 为数值,避免字符串类型问题)
  279. refreshRecords(getParsedValue.value(senum))
  280. });
  281. defineExpose({
  282. backPressOptions
  283. })
  284. </script>
  285. <style scoped>
  286. /* 样式部分保持不变,仅修复标签颜色冲突(tag=3时优先黄色) */
  287. .container {
  288. padding: 20px;
  289. background-color: #f5f7fa;
  290. flex: 1;
  291. box-sizing: border-box;
  292. }
  293. .banner {
  294. background: linear-gradient(135deg, #6dd5ed, #2193b0);
  295. border-radius: 12px;
  296. padding: 20px 15px;
  297. margin-bottom: 20px;
  298. box-shadow: 0 4px 8px rgba(33, 147, 176, 0.3);
  299. }
  300. .banner-title {
  301. color: white;
  302. font-size: 18px;
  303. font-weight: bold;
  304. text-align: center;
  305. }
  306. .box {
  307. width: 20px;
  308. background-color: #909193;
  309. border-radius: 7.5px;
  310. }
  311. .card-list {
  312. display: flex;
  313. flex-direction: column;
  314. }
  315. .card-list>.card {
  316. margin-bottom: 15px;
  317. }
  318. /* #ifndef APP-ANDROID */
  319. .card-list>.card:last-child {
  320. margin-bottom: 0;
  321. }
  322. /* #endif */
  323. .card {
  324. background-color: white;
  325. border-radius: 10px;
  326. padding: 15px;
  327. box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  328. display: flex;
  329. flex-direction: column;
  330. }
  331. .card-header {
  332. display: flex;
  333. align-items: center;
  334. margin-bottom: 20rpx;
  335. }
  336. .card-icon {
  337. width: 64rpx;
  338. height: 64rpx;
  339. margin-right: 20rpx;
  340. border-radius: 12rpx;
  341. background-color: #eef5ff;
  342. padding: 10rpx;
  343. }
  344. .info-row {
  345. display: flex;
  346. flex-direction: row;
  347. font-size: 14px;
  348. color: #33475b;
  349. align-items: center;
  350. padding: 10px;
  351. }
  352. .label {
  353. font-weight: bold;
  354. color: #102a43;
  355. min-width: 75px;
  356. }
  357. .value {
  358. flex: 1;
  359. white-space: nowrap;
  360. overflow: hidden;
  361. text-overflow: ellipsis;
  362. }
  363. .divider {
  364. height: 1px;
  365. background-color: #eee;
  366. margin: 10px 0;
  367. }
  368. .card-info {
  369. font-size: 28rpx;
  370. color: #666;
  371. line-height: 1.6;
  372. display: flex;
  373. flex-direction: column;
  374. }
  375. .card-info>.card-info-item {
  376. margin-bottom: 10rpx;
  377. }
  378. /* #ifndef APP-ANDROID */
  379. .card-info>.card-info-item:last-child {
  380. margin-bottom: 0;
  381. }
  382. /* #endif */
  383. .btn-group {
  384. display: flex;
  385. justify-content: flex-end;
  386. margin-top: 20rpx;
  387. }
  388. .main-btn {
  389. font-size: 28rpx;
  390. color: white;
  391. border: none;
  392. border-radius: 100rpx;
  393. background: linear-gradient(to right, #36d1dc, #5b86e5);
  394. box-shadow: 0 6rpx 16rpx rgba(91, 134, 229, 0.3);
  395. /* #ifndef APP-ANDROID */
  396. transition: all 0.2s ease-in-out;
  397. /* #endif */
  398. }
  399. /* #ifndef APP-ANDROID */
  400. .main-btn:active {
  401. opacity: 0.9;
  402. transform: scale(0.98);
  403. }
  404. /* #endif */
  405. .empty-card {
  406. background-color: white;
  407. border-radius: 20rpx;
  408. padding: 60rpx 30rpx;
  409. box-shadow: 0 6rpx 16rpx rgba(0, 0, 0, 0.05);
  410. text-align: center;
  411. margin-top: 100rpx;
  412. }
  413. .empty-img {
  414. width: 180rpx;
  415. height: 180rpx;
  416. margin-bottom: 30rpx;
  417. opacity: 0.8;
  418. }
  419. .empty-text {
  420. font-size: 30rpx;
  421. color: #999;
  422. }
  423. .surround {
  424. border: 1px solid silver;
  425. border-radius: 10rpx;
  426. min-height: 60rpx;
  427. }
  428. .selectable {
  429. /* 确保在安卓设备上文字可以正常显示为可点击状态 */
  430. user-select: text;
  431. -webkit-user-select: text;
  432. cursor: pointer;
  433. /* #ifdef APP-ANDROID */
  434. /* 安卓设备特别处理,增强可点击性 */
  435. background-color: #f8f8f8;
  436. /* #endif */
  437. }
  438. .record-card {
  439. background: #ffffff;
  440. border-radius: 20rpx;
  441. padding: 24rpx 32rpx;
  442. box-shadow: 0 8rpx 15rpx rgba(0, 43, 92, 0.1);
  443. display: flex;
  444. flex-direction: column;
  445. margin-bottom: 20rpx;
  446. margin-top: 20rpx;
  447. }
  448. /* 横向排列radio的样式 */
  449. .radio-group-horizontal {
  450. display: flex;
  451. flex-direction: row;
  452. align-items: center;
  453. }
  454. .radio-group-horizontal-rg{
  455. margin-right: 30rpx;
  456. }
  457. .flex-row {
  458. flex-direction: row;
  459. }
  460. .tag-circle {
  461. width: 60rpx;
  462. height: 60rpx;
  463. margin: 0 10rpx;
  464. display: flex;
  465. justify-content: center;
  466. align-items: center;
  467. }
  468. .circle {
  469. height: 50rpx;
  470. width: 50rpx;
  471. background-color: #004a99;
  472. text-align: center;
  473. color: #fff;
  474. line-height: 50rpx;
  475. border-radius: 50rpx;
  476. }
  477. .checked-tag {
  478. height: 60rpx;
  479. width: 60rpx;
  480. line-height: 60rpx;
  481. border: 2rpx solid #ffffff;
  482. box-shadow: 0 0 0 2rpx #007aff;
  483. position: relative;
  484. z-index: 10;
  485. }
  486. .bg-green {
  487. background-color: seagreen;
  488. }
  489. .bg-yellow {
  490. background-color: yellow;
  491. color: #333;
  492. /* 黄色标签加深色文字,避免看不清 */
  493. }
  494. .bg-black {
  495. background-color: #102a43;
  496. }
  497. .bg-red {
  498. background-color: red;
  499. }
  500. .btn-panel {
  501. position: relative;
  502. width: 100%;
  503. height: 90rpx;
  504. overflow: visible;
  505. }
  506. .btn {
  507. position: absolute;
  508. height: 70rpx;
  509. line-height: 70rpx;
  510. padding: 0 20rpx;
  511. top: 50%;
  512. transform: translateY(-50%);
  513. background-color: #00aaff;
  514. color: #fff;
  515. border: 0 none;
  516. border-radius: 25rpx;
  517. }
  518. .btn-first {
  519. left: 15rpx;
  520. }
  521. .btn-second {
  522. right: 15rpx;
  523. }
  524. .number-input {
  525. width: 50%;
  526. }
  527. </style>