safecheck-client 3.0.30-25 → 3.0.30-26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +133 -133
- package/src/components/pc/Edit.vue +50 -0
- package/src/components/pc/PaperEdit.vue +148 -0
- package/src/components/pc/SelectCheckPlanAndNoPLan.vue +2 -2
- package/src/filiale/tongchuan/android/SafecheckDevices.vue +1207 -1207
- package/src/filiale/tongchuan/pc/PaperDefectMain.vue +1091 -1091
- package/src/main.js +1 -1
- package/src/safecheck.js +6 -0
package/src/main.js
CHANGED
package/src/safecheck.js
CHANGED
@@ -869,6 +869,12 @@ export default function (filiale) {
|
|
869
869
|
Vue.component('defect-deal', (resolve) => {
|
870
870
|
require(['./components/pc/DefectDeal'], resolve)
|
871
871
|
})
|
872
|
+
Vue.component('paper-edit', (resolve) => {
|
873
|
+
require(['./components/pc/PaperEdit'], resolve)
|
874
|
+
})
|
875
|
+
Vue.component('edit', (resolve) => {
|
876
|
+
require(['./components/pc/Edit'], resolve)
|
877
|
+
})
|
872
878
|
|
873
879
|
if (filiale) {
|
874
880
|
let filialeComp = require(`./filiale/${filiale}/pc`).specialComp
|