| | |
| | | </view>
|
| | | </view>
|
| | | <view class="button-space"></view>
|
| | | <view class="button-space"></view>
|
| | | <view class="button-green" style="background-color: #fff;bottom: 160rpx;color: #000"
|
| | | @click="closeParamPopAndQuery">
|
| | | 查询
|
| | | <view>
|
| | | <view class="button-green" style="background-color: #fff;color: #000;width: 200rpx;left: 40rpx;right: unset;"
|
| | | @click="closeParamPopAndQuery">
|
| | | 查询
|
| | | </view>
|
| | | |
| | | <view class="button-green" style="width: 200rpx;right: 40rpx;left: unset;" @click="closeParamPop">关闭</view>
|
| | | </view>
|
| | |
|
| | | <view class="button-green" @click="closeParamPop">关闭</view>
|
| | | </view>
|
| | | </uni-popup>
|
| | |
|
| | |
| | | closeParamPopAndQuery() {
|
| | | this.$refs.popup_param.close()
|
| | | //设置参数
|
| | | this.dto.params = []
|
| | | for (var params of this.params) {
|
| | | if (params.value) {
|
| | | this.dto.params.push({
|
| | | id: params.id,
|
| | | value: params.value
|
| | | this.query.params = []
|
| | | for (var param of this.params) {
|
| | | if (param.value) {
|
| | | this.query.params.push({
|
| | | id: param.id,
|
| | | value: param.value
|
| | | })
|
| | | }
|
| | | }
|