This commit is contained in:
2024-07-16 15:50:04 +08:00
parent 01c4435276
commit 3ffa126b9b
12 changed files with 71 additions and 13 deletions

View File

@@ -1,6 +1,7 @@
<template>
<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_wrapper">
<view class="filter_item">
@@ -53,6 +54,7 @@
},
data() {
return {
title: '',
val1: '',
options1: [{value: '1', text: '1'}, {value: '2', text: '2'}, {value: '3', text: '3'}, {value: '4', text: '4'}, {value: '5', text: '5'}],
index1: '',
@@ -63,6 +65,9 @@
disabled: false
};
},
onLoad (options) {
this.title = options.title
},
created () {
this._queryPaperMaterial()
},