|
@@ -120,6 +120,18 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6">
|
|
|
+ <el-form-item label="钱包" prop="walletIds1">
|
|
|
+ <el-select v-model="screenForm.walletIds1" size="mini" multiple filterable>
|
|
|
+ <el-option
|
|
|
+ v-for="item in NoRebateWalletList"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
</el-row>
|
|
|
</el-form>
|
|
|
</template>
|
|
@@ -408,6 +420,7 @@
|
|
|
import { getTotalList } from '@/api/supply/implement'
|
|
|
import { getCategoryList } from '@/api/common'
|
|
|
import DisplaceDetail from '@/views/supply/implement/components/displace_detail'
|
|
|
+import { getNoRebateWalletList } from '@/api/policy_list'
|
|
|
|
|
|
let that
|
|
|
export default {
|
|
@@ -447,7 +460,8 @@ export default {
|
|
|
k3CategoryNumber: [],
|
|
|
policyCode: '',
|
|
|
policyRemark: '',
|
|
|
- isOver: ''
|
|
|
+ isOver: '',
|
|
|
+ walletIds1: []
|
|
|
},
|
|
|
categoryList: [],
|
|
|
statusList: [
|
|
@@ -458,6 +472,7 @@ export default {
|
|
|
],
|
|
|
isCollapse: true,
|
|
|
queryItem: {},
|
|
|
+ NoRebateWalletList: [],
|
|
|
isShowDisplaceDetail: false
|
|
|
}
|
|
|
},
|
|
@@ -517,6 +532,7 @@ export default {
|
|
|
projectName: this.screenForm.enginName,
|
|
|
enginRecordNo: this.screenForm.orderNum,
|
|
|
k3CategoryNumber: this.screenForm.k3CategoryNumber.join(','),
|
|
|
+ walletIds1: this.screenForm.walletIds1.join(','),
|
|
|
policyCode: this.screenForm.policyCode,
|
|
|
policyRemark: this.screenForm.policyRemark,
|
|
|
isOver: this.screenForm.isOver
|
|
@@ -541,6 +557,12 @@ export default {
|
|
|
}).then(res => {
|
|
|
this.categoryList = res.data.records
|
|
|
})
|
|
|
+ getNoRebateWalletList({
|
|
|
+ walletName: ''
|
|
|
+ }).then(res => {
|
|
|
+ console.log(res)
|
|
|
+ this.NoRebateWalletList = res.data
|
|
|
+ })
|
|
|
},
|
|
|
|
|
|
// 提交筛选表单
|