|
|
@@ -14,9 +14,6 @@
|
|
|
<button class="btn btn-first" @click="download">
|
|
|
下载数据
|
|
|
</button>
|
|
|
- <button class="btn btn-second" @click="upload">
|
|
|
- 上传数据
|
|
|
- </button>
|
|
|
</view>
|
|
|
<!-- 列表内容 -->
|
|
|
<!-- #ifdef APP -->
|
|
|
@@ -55,7 +52,14 @@
|
|
|
'bg-black': item.statusRecordCount === 0
|
|
|
}"> {{ item.statusRecordCount }} / {{ item.totalRecord }} </text>
|
|
|
</view>
|
|
|
+
|
|
|
+ <view class="info-row">
|
|
|
+ <button class="btn btn-second" @click="upload">
|
|
|
+ 上传数据
|
|
|
+ </button>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
+
|
|
|
<!-- #ifdef APP -->
|
|
|
</scroll-view>
|
|
|
<!-- #endif -->
|
|
|
@@ -68,7 +72,7 @@
|
|
|
import { downloadDataFromAPI } from '@/utils/dataProcessor';
|
|
|
|
|
|
// 产品号输入框数据
|
|
|
- const productNo = ref('');
|
|
|
+ const productNo = ref('YH07202507000005');
|
|
|
|
|
|
const backPressOptions = reactive({
|
|
|
from: 'backbutton'
|
|
|
@@ -347,6 +351,7 @@
|
|
|
|
|
|
.btn-second {
|
|
|
margin-right: 5rpx;
|
|
|
+ margin-left: auto;
|
|
|
}
|
|
|
|
|
|
</style>
|