Commit 7fed8e81e2789f8fa34488ba7a381cb4cb04c0b9

Authored by 范牧
1 parent f555383d95
Exists in master

样式修改

Showing 1 changed file with 7 additions and 2 deletions   Show diff stats
src/pages/purchaseLenses/purchaseLenses.vue
... ... @@ -374,7 +374,8 @@ export default {
374 374 pid: 0,
375 375 maxCount: 20,
376 376 dataName: '', // 验光数据人员名称
377   - isDataName: false,
  377 + isDataName: false, // 是否是已存在的人员数据
  378 + dataConfirm: false, // 已确认所输入验光数据
378 379 opIsOpen: true,
379 380 addDisabled: false,
380 381 desDisabled: false,
... ... @@ -465,7 +466,7 @@ export default {
465 466 this.isDataName = true
466 467 uni.showModal({
467 468 title: '提示',
468   - content: `是否填充已有的${e.detail.value}的数据`,
  469 + content: `是否自动填充已保存的${e.detail.value}的数据`,
469 470 success: ({ confirm }) => {
470 471 if (confirm) {
471 472 this.checkedData = mpList[index]
... ... @@ -476,6 +477,10 @@ export default {
476 477 }
477 478 }
478 479 },
  480 + // 确认验光数据
  481 + changeConfirm() {
  482 +
  483 + },
479 484 change(num) {
480 485 this.show[num] = !this.show[num]
481 486 this.$forceUpdate()
... ...