title
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="分切暂存清除"></nav-bar>
|
<!-- <nav-bar title="分切暂存清除"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -41,6 +42,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
disabled: false,
|
disabled: false,
|
||||||
@@ -48,6 +50,9 @@
|
|||||||
disabled2: false
|
disabled2: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async _toCleanCutCacheInventory () {
|
async _toCleanCutCacheInventory () {
|
||||||
this.disabled = true
|
this.disabled = true
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="分切暂存下料"></nav-bar>
|
<!-- <nav-bar title="分切暂存下料"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -35,6 +36,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
options: [],
|
options: [],
|
||||||
index: '',
|
index: '',
|
||||||
newoptions: [],
|
newoptions: [],
|
||||||
@@ -43,6 +45,9 @@
|
|||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
|
},
|
||||||
created () {
|
created () {
|
||||||
this._queryProductArea()
|
this._queryProductArea()
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="穿拔轴初始化"></nav-bar>
|
<!-- <nav-bar title="穿拔轴初始化"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -28,11 +29,15 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
options: [],
|
options: [],
|
||||||
index: '',
|
index: '',
|
||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
|
},
|
||||||
created () {
|
created () {
|
||||||
this._getShaftPoint()
|
this._getShaftPoint()
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="纸管绑定"></nav-bar>
|
<!-- <nav-bar title="纸管绑定"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -53,6 +54,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
val1: '',
|
val1: '',
|
||||||
options1: [{value: '1', text: '1'}, {value: '2', text: '2'}, {value: '3', text: '3'}, {value: '4', text: '4'}, {value: '5', text: '5'}],
|
options1: [{value: '1', text: '1'}, {value: '2', text: '2'}, {value: '3', text: '3'}, {value: '4', text: '4'}, {value: '5', text: '5'}],
|
||||||
index1: '',
|
index1: '',
|
||||||
@@ -63,6 +65,9 @@
|
|||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
|
},
|
||||||
created () {
|
created () {
|
||||||
this._queryPaperMaterial()
|
this._queryPaperMaterial()
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="气胀轴库维护"></nav-bar>
|
<!-- <nav-bar title="气胀轴库维护"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -30,10 +31,14 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
val1: '',
|
val1: '',
|
||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async _shaftMaintenanceInventory (type) {
|
async _shaftMaintenanceInventory (type) {
|
||||||
this.disabled = true
|
this.disabled = true
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="分切下料"></nav-bar>
|
<!-- <nav-bar title="分切下料"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -36,6 +37,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
options: [],
|
options: [],
|
||||||
index: '',
|
index: '',
|
||||||
options2: [],
|
options2: [],
|
||||||
@@ -43,6 +45,9 @@
|
|||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
|
},
|
||||||
created () {
|
created () {
|
||||||
this._queryProductArea()
|
this._queryProductArea()
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="分切上料"></nav-bar>
|
<!-- <nav-bar title="分切上料"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -137,6 +138,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
top: 0,
|
top: 0,
|
||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
@@ -164,6 +166,9 @@
|
|||||||
disabled2: false
|
disabled2: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
|
},
|
||||||
onPageScroll(e) {
|
onPageScroll(e) {
|
||||||
this.$refs.UT.topData(e.scrollTop)
|
this.$refs.UT.topData(e.scrollTop)
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="空轴套管"></nav-bar>
|
<!-- <nav-bar title="空轴套管"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -117,6 +118,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
top: 0,
|
top: 0,
|
||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
@@ -146,6 +148,9 @@
|
|||||||
onPageScroll(e) {
|
onPageScroll(e) {
|
||||||
this.$refs.UT.topData(e.scrollTop)
|
this.$refs.UT.topData(e.scrollTop)
|
||||||
},
|
},
|
||||||
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
|
},
|
||||||
created () {
|
created () {
|
||||||
this._queryProductArea()
|
this._queryProductArea()
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="空轴配送"></nav-bar>
|
<!-- <nav-bar title="空轴配送"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -126,6 +127,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
top: 0,
|
top: 0,
|
||||||
val1: '',
|
val1: '',
|
||||||
val2: '',
|
val2: '',
|
||||||
@@ -147,6 +149,9 @@
|
|||||||
onPageScroll(e) {
|
onPageScroll(e) {
|
||||||
this.$refs.UT.topData(e.scrollTop)
|
this.$refs.UT.topData(e.scrollTop)
|
||||||
},
|
},
|
||||||
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
|
},
|
||||||
created () {
|
created () {
|
||||||
this._queryProductArea()
|
this._queryProductArea()
|
||||||
this._queryMaterialInfo()
|
this._queryMaterialInfo()
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="空轴进站"></nav-bar>
|
<!-- <nav-bar title="空轴进站"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -80,6 +81,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
top: 0,
|
top: 0,
|
||||||
options1: [],
|
options1: [],
|
||||||
index1: '',
|
index1: '',
|
||||||
@@ -96,6 +98,9 @@
|
|||||||
onPageScroll(e) {
|
onPageScroll(e) {
|
||||||
this.$refs.UT.topData(e.scrollTop)
|
this.$refs.UT.topData(e.scrollTop)
|
||||||
},
|
},
|
||||||
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
|
},
|
||||||
created () {
|
created () {
|
||||||
this._queryProductArea()
|
this._queryProductArea()
|
||||||
this._queryMaterialInfo()
|
this._queryMaterialInfo()
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="子卷出站"></nav-bar>
|
<!-- <nav-bar title="子卷出站"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -134,6 +135,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
top: 0,
|
top: 0,
|
||||||
options1: [],
|
options1: [],
|
||||||
index1: '',
|
index1: '',
|
||||||
@@ -157,6 +159,9 @@
|
|||||||
onPageScroll(e) {
|
onPageScroll(e) {
|
||||||
this.$refs.UT.topData(e.scrollTop)
|
this.$refs.UT.topData(e.scrollTop)
|
||||||
},
|
},
|
||||||
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
|
},
|
||||||
created () {
|
created () {
|
||||||
this._queryProductArea()
|
this._queryProductArea()
|
||||||
this._queryMaterialInfo()
|
this._queryMaterialInfo()
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="zd_container">
|
<view class="zd_container">
|
||||||
<nav-bar title="分切子卷维护"></nav-bar>
|
<!-- <nav-bar title="分切子卷维护"></nav-bar> -->
|
||||||
|
<nav-bar :title="title"></nav-bar>
|
||||||
<view class="zd_content">
|
<view class="zd_content">
|
||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="filter_item">
|
<view class="filter_item">
|
||||||
@@ -57,6 +58,7 @@
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
title: '',
|
||||||
options1: [],
|
options1: [],
|
||||||
index1: '',
|
index1: '',
|
||||||
options2: [],
|
options2: [],
|
||||||
@@ -68,7 +70,8 @@
|
|||||||
disabled: false
|
disabled: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
onLoad () {
|
onLoad (options) {
|
||||||
|
this.title = options.title
|
||||||
this._queryProductArea()
|
this._queryProductArea()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|||||||
Reference in New Issue
Block a user