Commit 6ff5300e authored by 黎博's avatar 黎博

vcc造数据新增渠道号

parent fd47955f
......@@ -10,6 +10,7 @@
<el-card>
<div>
手机号:<el-input v-model="genDataParams.phoneNo" placeholder="请输入手机号" maxlength="11"></el-input>
渠道号:<el-input v-model="genDataParams.channel" placeholder="请输入渠道号" maxlength="11"></el-input>
用户状态:
<el-select v-model="genDataParams.status" placeholder="请选择用户状态">
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
......@@ -107,12 +108,14 @@ export default {
if (resp !== null) {
tLoading.close()
}
this.tableData.push(resp.data.data)
if (resp.data.data !== null) {
this.tableData.push(resp.data.data)
}
})
.catch((error) => {
console.log(error)
tLoading.close()
this.$$message.error('vcc或用户中心相关服务异常,请检查!')
this.$message.error('vcc或用户中心相关服务异常,请检查!')
})
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment