hebinlong пре 4 година
родитељ
комит
518bb48570

+ 1 - 1
config/index.js

@@ -9,7 +9,7 @@ module.exports = {
     proxyTable: {
       '/pre': {
         // target: 'http://app.bluefire.top:7999',//后端接口地址
-        target: 'http://192.168.101.15:8083',//后端接口地址
+        target: 'http://192.168.101.15:8081',//后端接口地址
         changeOrigin: true,  //是否跨域
         pathRewrite: {
           '^/pre': '/',//重写,

+ 1 - 1
src/utils/request.js

@@ -35,7 +35,7 @@ service.interceptors.response.use(
 
   response => {
     console.log(response)
-    const code = response.data.code
+    const code = response.status
     if (code === 401) {
       MessageBox.confirm(
         '登录状态已过期,您可以继续留在该页面,或者重新登录',

+ 3 - 3
src/views/admin/dept.vue

@@ -160,7 +160,7 @@ export default {
             this.$confirm('确认提交吗?', '提示', {}).then(() => {
               this.editLoading = true
               updateDept(this.deptForm).then((res) => {
-                if (res.data.code === 200) {
+                if (res.status === 200) {
                   this.$message({ message: '操作成功', type: 'success' })
                 } else {
                   this.$message({ message: res.data.msg, type: 'error' })
@@ -175,7 +175,7 @@ export default {
             this.$confirm('确认提交吗?', '提示', {}).then(() => {
               this.editLoading = true
               saveDept(this.deptForm).then((res) => {
-                if (res.data.code === 200) {
+                if (res.status === 200) {
                   this.$message({ message: '操作成功', type: 'success' })
                 } else {
                   this.$message({ message: res.data.msg, type: 'error' })
@@ -205,7 +205,7 @@ export default {
         })
           .then(() => {
             deleteDept(this.deptForm.deptId).then(response => {
-              if (response.data.code === 200) {
+              if (response.status === 200) {
                 this.$message({
                   type: 'success',
                   message: '操作成功'

+ 3 - 3
src/views/admin/menu.vue

@@ -358,7 +358,7 @@ export default {
       })
         .then(() => {
           deleteMenu(row.menuId).then(response => {
-            if (response.data.code === 200) {
+            if (response.status === 200) {
               this.$message({
                 type: 'success',
                 message: '操作成功'
@@ -384,7 +384,7 @@ export default {
     submitForm: function() {
       if (!this.isEditForm) {
         saveMenu(this.dataForm).then(response => {
-          if (response.data.code === 200) {
+          if (response.status === 200) {
             this.$message({
               type: 'success',
               message: '操作成功'
@@ -400,7 +400,7 @@ export default {
         })
       } else {
         updateMenu(this.dataForm).then(response => {
-          if (response.data.code === 200) {
+          if (response.status === 200) {
             this.$message({
               type: 'success',
               message: '操作成功'

+ 3 - 3
src/views/admin/role.vue

@@ -325,7 +325,7 @@ export default {
       })
         .then(() => {
           deleteRole(row.roleId).then(response => {
-            if (response.data.code === 200) {
+            if (response.status === 200) {
               this.$message({
                 type: 'success',
                 message: '操作成功'
@@ -378,7 +378,7 @@ export default {
         if (valid) {
           if (this.isEditForm) {
             updateRole(this.form).then(response => {
-              if (response.data.code === 200) {
+              if (response.status === 200) {
                 this.$message({
                   type: 'success',
                   message: '操作成功'
@@ -394,7 +394,7 @@ export default {
             })
           } else {
             addRole(this.form).then(response => {
-              if (response.data.code === 200) {
+              if (response.status === 200) {
                 this.$message({
                   type: 'success',
                   message: '操作成功'

+ 1 - 1
src/views/admin/social.vue

@@ -157,7 +157,7 @@ export default {
           params.append('userId', row.userId)
           params.append('providerId', row.providerId)
           untied(params).then(response => {
-            if (response.data.code === 200) {
+            if (response.status === 200) {
               this.$message({
                 type: 'success',
                 message: '操作成功'

+ 3 - 3
src/views/admin/tenant.vue

@@ -234,7 +234,7 @@ export default {
       })
         .then(() => {
           deleteTenant(row.id).then(response => {
-            if (response.data.code === 200) {
+            if (response.status === 200) {
               this.$message({
                 type: 'success',
                 message: '操作成功'
@@ -262,7 +262,7 @@ export default {
             this.$confirm('确认提交吗?', '提示', {}).then(() => {
               this.editLoading = true
               updateTenant(this.dataForm).then((res) => {
-                if (res.data.code === 200) {
+                if (res.status === 200) {
                   this.$message({ message: '操作成功', type: 'success' })
                 } else {
                   this.$message({ message: res.data.msg, type: 'error' })
@@ -282,7 +282,7 @@ export default {
               console.log(this.dataForm)
               addTenant(this.dataForm).then((res) => {
                 this.editLoading = true
-                if (res.data.code === 200) {
+                if (res.status === 200) {
                   this.$message({ message: '操作成功', type: 'success' })
                 } else {
                   this.$message({ message: res.data.msg, type: 'error' })

+ 4 - 4
src/views/admin/user.vue

@@ -325,7 +325,7 @@ export default {
       })
         .then(() => {
           restPass(row.userId).then(response => {
-            if (response.data.code === 200) {
+            if (response.status === 200) {
               that.$message({
                 type: 'success',
                 message: '重置密码成功'
@@ -355,7 +355,7 @@ export default {
       })
         .then(() => {
           deleteUser(row.userId).then(response => {
-            if (response.data.code === 200) {
+            if (response.status === 200) {
               this.$message({
                 type: 'success',
                 message: '操作成功'
@@ -397,7 +397,7 @@ export default {
       if (!this.operation) {
         // 编辑用户
         editUser(this.dataForm).then(response => {
-          if (response.data.code === 200) {
+          if (response.status === 200) {
             this.$message({
               type: 'success',
               message: '操作成功'
@@ -414,7 +414,7 @@ export default {
       } else {
         // 添加用户
         addUser(this.dataForm).then(response => {
-          if (response.data.code === 200) {
+          if (response.status === 200) {
             this.$message({
               type: 'success',
               message: '操作成功'

+ 1 - 1
src/views/login/bind.vue

@@ -93,7 +93,7 @@ export default {
         if (valid) {
           this.loading = true
           bindUser(_this.bindForm).then(res => {
-            if (res.data.code === 200) {
+            if (res.status === 200) {
               this.$notify({
                 title: '成功',
                 message: '社交账号绑定成功,2秒后返回登录页面',

+ 8 - 8
src/views/login/index.vue

@@ -166,7 +166,7 @@
           </span>
 
           <span class="other-icon" @click="handleSocial('gitee')">
-            <!--<a href='http://localhost:8081/auth/gitee'>
+            <a href='http://localhost:8081/auth/gitee'>
             <svg
               t="1563366479009"
               class="fa-icon"
@@ -183,10 +183,10 @@
                 p-id="1419"
               />
             </svg>
-            <!--</a>
+            </a>
           </span>
           <span class="other-icon" @click="handleSocial('weixin')">
-            <!--<a href='http://localhost:8081/auth/gitee'
+            <a href='http://localhost:8081/auth/gitee'
             <svg
               t="1566549849419"
               class="icon"
@@ -209,7 +209,7 @@
               fill="#FFFFFF"
               p-id="2081"
             /></svg>
-            <!--</a>
+            </a>
           </span>
         </div>
         <div class="register">
@@ -291,9 +291,9 @@ export default {
   created() {
     // this.refreshCaptcha()
     // this.socialLogin()
-    let array=[{a:1},{a:2},{a:3},{a:4},{a:5}]
-    let ary=array.map(res=>{
-       return res.a
+    const array = [{ a: 1 }, { a: 2 }, { a: 3 }, { a: 4 }, { a: 5 }]
+    const ary = array.map(res => {
+      return res.a
     })
     // console.log(Math.max(ary))
   },
@@ -375,7 +375,7 @@ export default {
         this.buttonName = '发送中'
         const _this = this
         sendSms(this.phoneForm.phone).then(res => {
-          if (res.data.code === 200) {
+          if (res.status === 200) {
             this.$message({
               showClose: true,
               message: '发送成功,验证码有效期2分钟',

+ 2 - 2
src/views/login/register.vue

@@ -125,7 +125,7 @@ export default {
       if (this.checkMobile(phone)) {
         console.log(phone)
         sendSms(phone).then(res => {
-          if (res.data.code === 200) {
+          if (res.status === 200) {
             this.$message({
               showClose: true,
               message: '发送成功,验证码有效期2分钟',
@@ -156,7 +156,7 @@ export default {
       this.$refs[formName].validate(valid => {
         if (valid) {
           registerUser(this.registerForm).then(response => {
-            if (response.data.code === 200) {
+            if (response.status === 200) {
               this.$notify({
                 title: '成功',
                 message: '注册账号成功,2秒后返回登录页面',

+ 299 - 111
src/views/orderList/Distribute.vue

@@ -5,91 +5,145 @@
     <div class="DistributeTable">
       <el-table v-loading="loading" :data="tableData" border style="width: 100%">
         <el-table-column type="selection" />
+
         <el-table-column label="订单号" width="200" align="center">
           <template slot-scope="scope">
             <span>{{ scope.row.orderId }}</span>
           </template>
         </el-table-column>
+
         <el-table-column label="分发订单号" width="200" align="center">
           <template slot-scope="scope">
             <span>{{ scope.row.recId }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="应用ID" width="200" align="center">
+
+        <el-table-column label="手机号" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.appId }}</span>
+            <span>{{ scope.row.mobileNo }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="手机号" width="200" align="center">
+
+        <el-table-column label="流量产品包(参照运营商规格)" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.mobileNo }}</span>
+            <span>{{ scope.row.packageId }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="流量包ID" width="200" align="center">
+
+        <el-table-column label="流量产品包(foss平台)" width="200" align="center">
           <template slot-scope="scope">
             <span>{{ scope.row.fossPackageId }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="归属地" width="200" align="center">
+
+        <el-table-column label="流量大小(面额)导数据注意转换" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.mobileHome }}</span>
+            <span>{{ scope.row.flowAmount }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="发送时间" width="200" align="center" prop="createTime">
+
+        <el-table-column label="下发次数" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.lastSendDate }}</span>
+            <span>{{ scope.row.sendCount }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="回调时间" width="200" align="center" prop="createTime">
+
+        <el-table-column label="创建日期" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.modifyDate }}</span>
+            <span>{{ scope.row.createDate }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="用时" width="200" align="center">
+
+        <el-table-column label="回调时间" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.useTime }}</span>
+            <span>{{ scope.row.modifyDate }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="下发次数" width="200" align="center">
+
+        <el-table-column label="发送状态:0-待发 1-已发 2-成功 3-重发 4-失败" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.sendCount }}</span>
+            <span>{{ scope.row.sendStatus }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="下发状态" width="200" align="center">
+
+        <el-table-column label="网关订单号(供应商订单号)" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.sendStatus }}</span>
+            <span>{{ scope.row.gwSeqNo }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="下发状态描述" width="200" align="center">
+
+        <el-table-column label="网关状态" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.sendStatusDesc }}</span>
+            <span>{{ scope.row.gwStatus }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="通道" width="200" align="center">
+
+        <el-table-column label="网关错误代码" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.channelName }}</span>
+            <span>{{ scope.row.gwErrorCode }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="网管序号" width="200" align="center">
+
+        <el-table-column label="网关错误信息" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.gwSeqNo }}</span>
+            <span>{{ scope.row.gwErrorMsg }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="网管错误码" width="200" align="center">
+
+        <el-table-column label="归属地市" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.gwErrorCode }}</span>
+            <span>{{ scope.row.mobileHome }}</span>
           </template>
         </el-table-column>
-        <el-table-column label="网管错误信息" width="200" align="center">
+
+        <el-table-column label="应用ID" width="200" align="center">
           <template slot-scope="scope">
-            <span>{{ scope.row.gwErrorMsg }}</span>
+            <span>{{ scope.row.appId }}</span>
           </template>
         </el-table-column>
+
         <el-table-column label="最后回调信息" width="200" align="center">
           <template slot-scope="scope">
             <span>{{ scope.row.lastCallbackMsg }}</span>
           </template>
         </el-table-column>
+
+        <el-table-column label="运营商结算价格 导数据注意转换" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.operatorBalancePrice }}</span>
+          </template>
+        </el-table-column>
+
+        <el-table-column label="通道组次数" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.batchCount }}</span>
+          </template>
+        </el-table-column>
+
+        <el-table-column label="客户产品" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.customerProducts }}</span>
+          </template>
+        </el-table-column>
+
+        <el-table-column label="通道产品" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.channelProducts }}</span>
+          </template>
+        </el-table-column>
+
+        <el-table-column label="运营商订单号" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.operatorId }}</span>
+          </template>
+        </el-table-column>
+
+        <el-table-column label="分发记录日志" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.recordLog }}</span>
+          </template>
+        </el-table-column>
+
       </el-table>
     </div>
   </div>
@@ -101,95 +155,229 @@ export default {
     return {
       tableData: [
         {
-          orderId: '123456',
-          recId: '123456',
-          appId: 'xingshengyouxuan',
-          mobileNo: 'phone number',
-          fossPackageId: 'YDHF100',
+          recId: '123456789',
+          orderId: '123456789',
+          mobileNo: '123456789',
+          packageNd: 'YDHF100',
+          fossPackageNd: '????',
+          flowAmount: 100,
+          sendCount: 5,
+          createDate: '2021-05-17 00:00:00',
+          modifyDate: '2021-05-17 00:00:00',
+          sendStatus: 0,
+          gwSeqNo: '123456789',
+          gwStatus: 'PASS',
+          gwErrorCode: '???',
+          gwErrorMsg: 'NOT FIND',
           mobileHome: '四川',
-          lastSendDate: '2021-05-14 13:08:00',
-          modifyDate: '2021-05-14 13:08:00',
-          useTime: '999',
-          sendCount: '5',
-          sendStatus: true,
-          sendStatusDesc: '下发',
-          channelName: '123',
-          gwSeqNo: '46845',
-          gwErrorCode: '1',
-          gwErrorMsg: 'ERROR Request',
-          lastCallbackMsg: 'PASS'
-        }, {
-          orderId: '123456',
-          recId: '123456',
-          appId: 'xingshengyouxuan',
-          mobileNo: 'phone number',
-          fossPackageId: 'YDHF100',
+          appId: '123',
+          lastCallbackMsg: 'CALL OK',
+          operatorBalancePprice: 100.55,
+          batchCount: 5,
+          customerProducts: '???',
+          channelProducts: '??',
+          operatorId: '123456789',
+          recordLog: 'SOURCE'
+        },
+        {
+          recId: '123456789',
+          orderId: '123456789',
+          mobileNo: '123456789',
+          packageNd: 'YDHF100',
+          fossPackageNd: '????',
+          flowAmount: 100,
+          sendCount: 5,
+          createDate: '2021-05-17 00:00:00',
+          modifyDate: '2021-05-17 00:00:00',
+          sendStatus: 0,
+          gwSeqNo: '123456789',
+          gwStatus: 'PASS',
+          gwErrorCode: '???',
+          gwErrorMsg: 'NOT FIND',
           mobileHome: '四川',
-          lastSendDate: '2021-05-14 13:08:00',
-          modifyDate: '2021-05-14 13:08:00',
-          useTime: '999',
-          sendCount: '5',
-          sendStatus: true,
-          sendStatusDesc: '下发',
-          channelName: '123',
-          gwSeqNo: '46845',
-          gwErrorCode: '1',
-          gwErrorMsg: 'ERROR Request',
-          lastCallbackMsg: 'PASS'
-        }, {
-          orderId: '123456',
-          recId: '123456',
-          appId: 'xingshengyouxuan',
-          mobileNo: 'phone number',
-          fossPackageId: 'YDHF100',
+          appId: '123',
+          lastCallbackMsg: 'CALL OK',
+          operatorBalancePprice: 100.55,
+          batchCount: 5,
+          customerProducts: '???',
+          channelProducts: '??',
+          operatorId: '123456789',
+          recordLog: 'SOURCE'
+        },
+        {
+          recId: '123456789',
+          orderId: '123456789',
+          mobileNo: '123456789',
+          packageNd: 'YDHF100',
+          fossPackageNd: '????',
+          flowAmount: 100,
+          sendCount: 5,
+          createDate: '2021-05-17 00:00:00',
+          modifyDate: '2021-05-17 00:00:00',
+          sendStatus: 0,
+          gwSeqNo: '123456789',
+          gwStatus: 'PASS',
+          gwErrorCode: '???',
+          gwErrorMsg: 'NOT FIND',
           mobileHome: '四川',
-          lastSendDate: '2021-05-14 13:08:00',
-          modifyDate: '2021-05-14 13:08:00',
-          useTime: '999',
-          sendCount: '5',
-          sendStatus: true,
-          sendStatusDesc: '下发',
-          channelName: '123',
-          gwSeqNo: '46845',
-          gwErrorCode: '1',
-          gwErrorMsg: 'ERROR Request',
-          lastCallbackMsg: 'PASS'
-        }, {
-          orderId: '123456',
-          recId: '123456',
-          appId: 'xingshengyouxuan',
-          mobileNo: 'phone number',
-          fossPackageId: 'YDHF100',
+          appId: '123',
+          lastCallbackMsg: 'CALL OK',
+          operatorBalancePprice: 100.55,
+          batchCount: 5,
+          customerProducts: '???',
+          channelProducts: '??',
+          operatorId: '123456789',
+          recordLog: 'SOURCE'
+        },
+        {
+          recId: '123456789',
+          orderId: '123456789',
+          mobileNo: '123456789',
+          packageNd: 'YDHF100',
+          fossPackageNd: '????',
+          flowAmount: 100,
+          sendCount: 5,
+          createDate: '2021-05-17 00:00:00',
+          modifyDate: '2021-05-17 00:00:00',
+          sendStatus: 0,
+          gwSeqNo: '123456789',
+          gwStatus: 'PASS',
+          gwErrorCode: '???',
+          gwErrorMsg: 'NOT FIND',
           mobileHome: '四川',
-          lastSendDate: '2021-05-14 13:08:00',
-          modifyDate: '2021-05-14 13:08:00',
-          useTime: '999',
-          sendCount: '5',
-          sendStatus: true,
-          sendStatusDesc: '下发',
-          channelName: '123',
-          gwSeqNo: '46845',
-          gwErrorCode: '1',
-          gwErrorMsg: 'ERROR Request',
-          lastCallbackMsg: 'PASS'
-        }, {
-          orderId: '123456',
-          recId: '123456',
-          appId: 'xingshengyouxuan',
-          mobileNo: 'phone number',
-          fossPackageId: 'YDHF100',
+          appId: '123',
+          lastCallbackMsg: 'CALL OK',
+          operatorBalancePprice: 100.55,
+          batchCount: 5,
+          customerProducts: '???',
+          channelProducts: '??',
+          operatorId: '123456789',
+          recordLog: 'SOURCE'
+        },
+        {
+          recId: '123456789',
+          orderId: '123456789',
+          mobileNo: '123456789',
+          packageNd: 'YDHF100',
+          fossPackageNd: '????',
+          flowAmount: 100,
+          sendCount: 5,
+          createDate: '2021-05-17 00:00:00',
+          modifyDate: '2021-05-17 00:00:00',
+          sendStatus: 0,
+          gwSeqNo: '123456789',
+          gwStatus: 'PASS',
+          gwErrorCode: '???',
+          gwErrorMsg: 'NOT FIND',
+          mobileHome: '四川',
+          appId: '123',
+          lastCallbackMsg: 'CALL OK',
+          operatorBalancePprice: 100.55,
+          batchCount: 5,
+          customerProducts: '???',
+          channelProducts: '??',
+          operatorId: '123456789',
+          recordLog: 'SOURCE'
+        },
+        {
+          recId: '123456789',
+          orderId: '123456789',
+          mobileNo: '123456789',
+          packageNd: 'YDHF100',
+          fossPackageNd: '????',
+          flowAmount: 100,
+          sendCount: 5,
+          createDate: '2021-05-17 00:00:00',
+          modifyDate: '2021-05-17 00:00:00',
+          sendStatus: 0,
+          gwSeqNo: '123456789',
+          gwStatus: 'PASS',
+          gwErrorCode: '???',
+          gwErrorMsg: 'NOT FIND',
+          mobileHome: '四川',
+          appId: '123',
+          lastCallbackMsg: 'CALL OK',
+          operatorBalancePprice: 100.55,
+          batchCount: 5,
+          customerProducts: '???',
+          channelProducts: '??',
+          operatorId: '123456789',
+          recordLog: 'SOURCE'
+        },
+        {
+          recId: '123456789',
+          orderId: '123456789',
+          mobileNo: '123456789',
+          packageNd: 'YDHF100',
+          fossPackageNd: '????',
+          flowAmount: 100,
+          sendCount: 5,
+          createDate: '2021-05-17 00:00:00',
+          modifyDate: '2021-05-17 00:00:00',
+          sendStatus: 0,
+          gwSeqNo: '123456789',
+          gwStatus: 'PASS',
+          gwErrorCode: '???',
+          gwErrorMsg: 'NOT FIND',
+          mobileHome: '四川',
+          appId: '123',
+          lastCallbackMsg: 'CALL OK',
+          operatorBalancePprice: 100.55,
+          batchCount: 5,
+          customerProducts: '???',
+          channelProducts: '??',
+          operatorId: '123456789',
+          recordLog: 'SOURCE'
+        },
+        {
+          recId: '123456789',
+          orderId: '123456789',
+          mobileNo: '123456789',
+          packageNd: 'YDHF100',
+          fossPackageNd: '????',
+          flowAmount: 100,
+          sendCount: 5,
+          createDate: '2021-05-17 00:00:00',
+          modifyDate: '2021-05-17 00:00:00',
+          sendStatus: 0,
+          gwSeqNo: '123456789',
+          gwStatus: 'PASS',
+          gwErrorCode: '???',
+          gwErrorMsg: 'NOT FIND',
+          mobileHome: '四川',
+          appId: '123',
+          lastCallbackMsg: 'CALL OK',
+          operatorBalancePprice: 100.55,
+          batchCount: 5,
+          customerProducts: '???',
+          channelProducts: '??',
+          operatorId: '123456789',
+          recordLog: 'SOURCE'
+        },
+        {
+          recId: '123456789',
+          orderId: '123456789',
+          mobileNo: '123456789',
+          packageNd: 'YDHF100',
+          fossPackageNd: '????',
+          flowAmount: 100,
+          sendCount: 5,
+          createDate: '2021-05-17 00:00:00',
+          modifyDate: '2021-05-17 00:00:00',
+          sendStatus: 0,
+          gwSeqNo: '123456789',
+          gwStatus: 'PASS',
+          gwErrorCode: '???',
+          gwErrorMsg: 'NOT FIND',
           mobileHome: '四川',
-          lastSendDate: '2021-05-14 13:08:00',
-          modifyDate: '2021-05-14 13:08:00',
-          useTime: '999',
-          sendCount: '5',
-          sendStatus: true,
-          sendStatusDesc: '下发',
-          channelName: '123',
-          gwSeqNo: '46845',
-          gwErrorCode: '1',
-          gwErrorMsg: 'ERROR Request',
-          lastCallbackMsg: 'PASS'
+          appId: '123',
+          lastCallbackMsg: 'CALL OK',
+          operatorBalancePprice: 100.55,
+          batchCount: 5,
+          customerProducts: '???',
+          channelProducts: '??',
+          operatorId: '123456789',
+          recordLog: 'SOURCE'
         }
       ]
     }

+ 1 - 1
src/views/sys/codegen.vue

@@ -202,7 +202,7 @@ export default {
           this.$confirm('确认提交吗?', '提示', {}).then(() => {
             this.editLoading = true
             codegen(this.dataForm).then((res) => {
-              if (res.data.code === 200) {
+              if (res.status === 200) {
                 this.$message({ message: '操作成功', type: 'success' })
               } else {
                 this.$message({ message: res.data.msg, type: 'error' })

+ 3 - 3
src/views/sys/dict.vue

@@ -174,7 +174,7 @@ export default {
           if (this.isAdd) {
             // 新增字典
             saveDict(this.form).then((res) => {
-              if (res.data.code === 200) {
+              if (res.status === 200) {
                 this.$message({ message: '操作成功', type: 'success' })
               } else {
                 this.$message({ message: res.data.msg, type: 'error' })
@@ -186,7 +186,7 @@ export default {
           } else {
             // 更新字典
             updateDict(this.form).then((res) => {
-              if (res.data.code === 200) {
+              if (res.status === 200) {
                 this.$message({ message: '操作成功', type: 'success' })
               } else {
                 this.$message({ message: res.data.msg, type: 'error' })
@@ -213,7 +213,7 @@ export default {
     // 删除操作
     subDelete(val) {
       deleteDict(val).then(res => {
-        if (res.data.code === 200) {
+        if (res.status === 200) {
           this.delLoading = false
           this.$message({ message: '删除成功', type: 'success' })
           this.getDictData()

+ 3 - 3
src/views/sys/dictItem.vue

@@ -131,7 +131,7 @@ export default {
     // 删除操作
     subDelete(val) {
       deleteDictItem(val).then(res => {
-        if (res.data.code === 200) {
+        if (res.status === 200) {
           this.$message({ message: '删除成功', type: 'success' })
           this.doSubmit(this.dictId)
           this.resetForm('form')
@@ -147,7 +147,7 @@ export default {
           if (this.isValueAdd) {
             // 新增字典
             addDictItem(this.form).then((res) => {
-              if (res.data.code === 200) {
+              if (res.status === 200) {
                 this.$message({ message: '操作成功', type: 'success' })
               } else {
                 this.$message({ message: res.data.msg, type: 'error' })
@@ -159,7 +159,7 @@ export default {
           } else {
             // 更新字典
             updateDictItem(this.form).then((res) => {
-              if (res.data.code === 200) {
+              if (res.status === 200) {
                 this.$message({ message: '操作成功', type: 'success' })
               } else {
                 this.$message({ message: res.data.msg, type: 'error' })

+ 1 - 1
src/views/sys/log.vue

@@ -181,7 +181,7 @@ export default {
       })
         .then(() => {
           deleteLog(row.id).then(response => {
-            if (response.data.code === 200) {
+            if (response.status === 200) {
               this.$message({
                 type: 'success',
                 message: '操作成功'

+ 3 - 3
src/views/user/index.vue

@@ -248,7 +248,7 @@ export default {
           params.append('oldPass', this.passForm.oldPass)
           params.append('newPass', this.passForm.newPass)
           updatePass(params).then((res) => {
-            if (res.data.code === 200) {
+            if (res.status === 200) {
               this.$message({
                 type: 'success',
                 message: '操作成功'
@@ -276,7 +276,7 @@ export default {
           params.append('code', this.mailForm.code)
           params.append('pass', this.mailForm.pass)
           updateEmail(params).then((res) => {
-            if (res.data.code === 200) {
+            if (res.status === 200) {
               this.$message({
                 type: 'success',
                 message: '操作成功'
@@ -305,7 +305,7 @@ export default {
         params.append('to', this.mailForm.email)
         const _this = this
         resetEmail(params).then(res => {
-          if (res.data.code === 200) {
+          if (res.status === 200) {
             this.$message({
               showClose: true,
               message: '发送成功,验证码有效期5分钟',

+ 523 - 70
src/views/userList/index.vue

@@ -9,57 +9,213 @@
         </template>
       </el-table-column>
 
+      <el-table-column label="代理商提成(按照面额提成,默认0)" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.partnerCommission }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="代理商ID(中间人)" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.partnerId }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="客户身份ID" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.identityId }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="合作伙伴类型;1:流量营销 2:渠道直充" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.partnerType }}</span>
+        </template>
+      </el-table-column>
+
       <el-table-column label="客户名称" width="200" align="center">
         <template slot-scope="scope">
           <span>{{ scope.row.customerName }}</span>
         </template>
       </el-table-column>
 
-      <el-table-column label="shorterName" width="200" align="center">
+      <el-table-column label="客户简称" width="200" align="center">
         <template slot-scope="scope">
           <span>{{ scope.row.shorterName }}</span>
         </template>
       </el-table-column>
 
-      <el-table-column label="linkmanName" width="200" align="center">
+      <el-table-column label="联系人姓名" width="200" align="center">
         <template slot-scope="scope">
           <span>{{ scope.row.linkmanName }}</span>
         </template>
       </el-table-column>
 
-      <el-table-column label="linkmanMobile" width="200" align="center">
+      <el-table-column label="联系人电话" width="200" align="center">
         <template slot-scope="scope">
           <span>{{ scope.row.linkmanMobile }}</span>
         </template>
       </el-table-column>
 
-      <el-table-column label="account" width="200" align="center">
+      <el-table-column label="联系人邮箱" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.linkmanEmail }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="联系人地址" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.address }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="状态,0:待提交 1:商用 2:暂停 (1 有效 ,2 无效 3 暂停)" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.status }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="登录帐号" width="200" align="center">
         <template slot-scope="scope">
           <span>{{ scope.row.account }}</span>
         </template>
       </el-table-column>
 
-      <el-table-column label="accumulatedDeposits" width="200" align="center">
+      <el-table-column label="登录密码,md5加密字符串" width="200" align="center">
         <template slot-scope="scope">
-          <span>{{ scope.row.accumulatedDeposits }}</span>
+          <span>{{ scope.row.passwd }}</span>
         </template>
       </el-table-column>
 
-      <el-table-column label="balance" width="200" align="center">
+      <el-table-column label="服务密码,有APP终端客户自行修改;初始密码为“888888" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.svrPasswd }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="支付密码,渠道营销客户无此字段内容" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.payPasswd }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="Logo图片组ID" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.logoGroupId }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="Logo图片URL" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.logoUrl }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="二维码组ID" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.twoCode }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="二维码图片URL" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.twoCodeUrl }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="Logo图片组ID" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.logoGroupId }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="Logo图片组ID" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.logoGroupId }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="微信号" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.wechatNo }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="终端结算价格,默认为产品定价,可以由直充渠道合作伙伴统一进行设置" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.settlePrice }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="帐号余额" width="200" align="center">
         <template slot-scope="scope">
           <span>{{ scope.row.balance }}</span>
         </template>
       </el-table-column>
 
-      <el-table-column label="creditAmount" width="200" align="center">
+      <el-table-column label="Logo图片组ID" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.logoGroupId }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="授信额度" width="200" align="center">
         <template slot-scope="scope">
           <span>{{ scope.row.creditAmount }}</span>
         </template>
       </el-table-column>
 
-      <el-table-column label="availableQuota" width="200" align="center">
+      <el-table-column label="当前费用" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.currentAmount }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="是否第一次登录,1:不是0:是" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.isFirstLogin }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="删除标识,1:已删除0:未删除" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.isDeleted }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="创建者" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.creator }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="创建时间" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.createTime }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="修改者" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.updator }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="修改时间" width="200" align="center">
         <template slot-scope="scope">
-          <span>{{ scope.row.availableQuota }}</span>
+          <span>{{ scope.row.updateTime }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="客户等级" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.customerLevel }}</span>
+        </template>
+      </el-table-column>
+
+      <el-table-column label="客户登录账户id" width="200" align="center">
+        <template slot-scope="scope">
+          <span>{{ scope.row.userId }}</span>
         </template>
       </el-table-column>
 
@@ -74,71 +230,368 @@ export default {
     return {
       tableData: [
         {
-          customerId: '123',
-          customerName: 'test',
-          shorterName: 'aa',
-          linkmanName: '??',
-          linkmanMobile: '??',
-          account: '??',
-          accumulatedDeposits: '??',
-          balance: '??',
-          creditAmount: '??',
-          availableQuota: '??'
+          customerId: '123456789',
+          partnerCommission: 0,
+          partnerId: '123456789',
+          identityId: '客户身份ID',
+          partnerType: 1,
+          customerName: 'TEST',
+          shorterName: 'test',
+          linkmanName: '张**',
+          linkmanMobile: '1518512885',
+          linkmanEmail: 'xxx@xxx',
+          address: '四川 成都',
+          status: 1,
+          account: 'TEST',
+          passwd: 'xxxxx',
+          svrPasswd: 'xxxxx',
+          payPasswd: 'xxxxx',
+          logoGroupId: 'xxxxx',
+          logoUrl: 'xxx',
+          twoCode: 'xxx',
+          twoCodeUrl: 'xxx',
+          settlePrice: '10.11',
+          balance: '',
+          creditAmount: '10000',
+          currentAmount: '154842',
+          isFirstLogin: '1',
+          isDeleted: 1,
+          creator: 'Admin',
+          createTime: '2021-05-17 00:00:00',
+          updator: 'Admin',
+          updateTime: '2021-05-17 00:00:00',
+          customerLevel: 0,
+          userId: '123'
+        }, {
+          customerId: '123456789',
+          partnerCommission: 0,
+          partnerId: '123456789',
+          identityId: '客户身份ID',
+          partnerType: 1,
+          customerName: 'TEST',
+          shorterName: 'test',
+          linkmanName: '张**',
+          linkmanMobile: '1518512885',
+          linkmanEmail: 'xxx@xxx',
+          address: '四川 成都',
+          status: 1,
+          account: 'TEST',
+          passwd: 'xxxxx',
+          svrPasswd: 'xxxxx',
+          payPasswd: 'xxxxx',
+          logoGroupId: 'xxxxx',
+          logoUrl: 'xxx',
+          twoCode: 'xxx',
+          twoCodeUrl: 'xxx',
+          settlePrice: '10.11',
+          balance: '',
+          creditAmount: '10000',
+          currentAmount: '154842',
+          isFirstLogin: '1',
+          isDeleted: 1,
+          creator: 'Admin',
+          createTime: '2021-05-17 00:00:00',
+          updator: 'Admin',
+          updateTime: '2021-05-17 00:00:00',
+          customerLevel: 0,
+          userId: '123'
+        }, {
+          customerId: '123456789',
+          partnerCommission: 0,
+          partnerId: '123456789',
+          identityId: '客户身份ID',
+          partnerType: 1,
+          customerName: 'TEST',
+          shorterName: 'test',
+          linkmanName: '张**',
+          linkmanMobile: '1518512885',
+          linkmanEmail: 'xxx@xxx',
+          address: '四川 成都',
+          status: 1,
+          account: 'TEST',
+          passwd: 'xxxxx',
+          svrPasswd: 'xxxxx',
+          payPasswd: 'xxxxx',
+          logoGroupId: 'xxxxx',
+          logoUrl: 'xxx',
+          twoCode: 'xxx',
+          twoCodeUrl: 'xxx',
+          settlePrice: '10.11',
+          balance: '',
+          creditAmount: '10000',
+          currentAmount: '154842',
+          isFirstLogin: '1',
+          isDeleted: 1,
+          creator: 'Admin',
+          createTime: '2021-05-17 00:00:00',
+          updator: 'Admin',
+          updateTime: '2021-05-17 00:00:00',
+          customerLevel: 0,
+          userId: '123'
+        }, {
+          customerId: '123456789',
+          partnerCommission: 0,
+          partnerId: '123456789',
+          identityId: '客户身份ID',
+          partnerType: 1,
+          customerName: 'TEST',
+          shorterName: 'test',
+          linkmanName: '张**',
+          linkmanMobile: '1518512885',
+          linkmanEmail: 'xxx@xxx',
+          address: '四川 成都',
+          status: 1,
+          account: 'TEST',
+          passwd: 'xxxxx',
+          svrPasswd: 'xxxxx',
+          payPasswd: 'xxxxx',
+          logoGroupId: 'xxxxx',
+          logoUrl: 'xxx',
+          twoCode: 'xxx',
+          twoCodeUrl: 'xxx',
+          settlePrice: '10.11',
+          balance: '',
+          creditAmount: '10000',
+          currentAmount: '154842',
+          isFirstLogin: '1',
+          isDeleted: 1,
+          creator: 'Admin',
+          createTime: '2021-05-17 00:00:00',
+          updator: 'Admin',
+          updateTime: '2021-05-17 00:00:00',
+          customerLevel: 0,
+          userId: '123'
+        }, {
+          customerId: '123456789',
+          partnerCommission: 0,
+          partnerId: '123456789',
+          identityId: '客户身份ID',
+          partnerType: 1,
+          customerName: 'TEST',
+          shorterName: 'test',
+          linkmanName: '张**',
+          linkmanMobile: '1518512885',
+          linkmanEmail: 'xxx@xxx',
+          address: '四川 成都',
+          status: 1,
+          account: 'TEST',
+          passwd: 'xxxxx',
+          svrPasswd: 'xxxxx',
+          payPasswd: 'xxxxx',
+          logoGroupId: 'xxxxx',
+          logoUrl: 'xxx',
+          twoCode: 'xxx',
+          twoCodeUrl: 'xxx',
+          settlePrice: '10.11',
+          balance: '',
+          creditAmount: '10000',
+          currentAmount: '154842',
+          isFirstLogin: '1',
+          isDeleted: 1,
+          creator: 'Admin',
+          createTime: '2021-05-17 00:00:00',
+          updator: 'Admin',
+          updateTime: '2021-05-17 00:00:00',
+          customerLevel: 0,
+          userId: '123'
+        }, {
+          customerId: '123456789',
+          partnerCommission: 0,
+          partnerId: '123456789',
+          identityId: '客户身份ID',
+          partnerType: 1,
+          customerName: 'TEST',
+          shorterName: 'test',
+          linkmanName: '张**',
+          linkmanMobile: '1518512885',
+          linkmanEmail: 'xxx@xxx',
+          address: '四川 成都',
+          status: 1,
+          account: 'TEST',
+          passwd: 'xxxxx',
+          svrPasswd: 'xxxxx',
+          payPasswd: 'xxxxx',
+          logoGroupId: 'xxxxx',
+          logoUrl: 'xxx',
+          twoCode: 'xxx',
+          twoCodeUrl: 'xxx',
+          settlePrice: '10.11',
+          balance: '',
+          creditAmount: '10000',
+          currentAmount: '154842',
+          isFirstLogin: '1',
+          isDeleted: 1,
+          creator: 'Admin',
+          createTime: '2021-05-17 00:00:00',
+          updator: 'Admin',
+          updateTime: '2021-05-17 00:00:00',
+          customerLevel: 0,
+          userId: '123'
         }, {
-          customerId: '123',
-          customerName: 'test',
-          shorterName: 'aa',
-          linkmanName: '??',
-          linkmanMobile: '??',
-          account: '??',
-          accumulatedDeposits: '??',
-          balance: '??',
-          creditAmount: '??',
-          availableQuota: '??'
+          customerId: '123456789',
+          partnerCommission: 0,
+          partnerId: '123456789',
+          identityId: '客户身份ID',
+          partnerType: 1,
+          customerName: 'TEST',
+          shorterName: 'test',
+          linkmanName: '张**',
+          linkmanMobile: '1518512885',
+          linkmanEmail: 'xxx@xxx',
+          address: '四川 成都',
+          status: 1,
+          account: 'TEST',
+          passwd: 'xxxxx',
+          svrPasswd: 'xxxxx',
+          payPasswd: 'xxxxx',
+          logoGroupId: 'xxxxx',
+          logoUrl: 'xxx',
+          twoCode: 'xxx',
+          twoCodeUrl: 'xxx',
+          settlePrice: '10.11',
+          balance: '',
+          creditAmount: '10000',
+          currentAmount: '154842',
+          isFirstLogin: '1',
+          isDeleted: 1,
+          creator: 'Admin',
+          createTime: '2021-05-17 00:00:00',
+          updator: 'Admin',
+          updateTime: '2021-05-17 00:00:00',
+          customerLevel: 0,
+          userId: '123'
         }, {
-          customerId: '123',
-          customerName: 'test',
-          shorterName: 'aa',
-          linkmanName: '??',
-          linkmanMobile: '??',
-          account: '??',
-          accumulatedDeposits: '??',
-          balance: '??',
-          creditAmount: '??',
-          availableQuota: '??'
+          customerId: '123456789',
+          partnerCommission: 0,
+          partnerId: '123456789',
+          identityId: '客户身份ID',
+          partnerType: 1,
+          customerName: 'TEST',
+          shorterName: 'test',
+          linkmanName: '张**',
+          linkmanMobile: '1518512885',
+          linkmanEmail: 'xxx@xxx',
+          address: '四川 成都',
+          status: 1,
+          account: 'TEST',
+          passwd: 'xxxxx',
+          svrPasswd: 'xxxxx',
+          payPasswd: 'xxxxx',
+          logoGroupId: 'xxxxx',
+          logoUrl: 'xxx',
+          twoCode: 'xxx',
+          twoCodeUrl: 'xxx',
+          settlePrice: '10.11',
+          balance: '',
+          creditAmount: '10000',
+          currentAmount: '154842',
+          isFirstLogin: '1',
+          isDeleted: 1,
+          creator: 'Admin',
+          createTime: '2021-05-17 00:00:00',
+          updator: 'Admin',
+          updateTime: '2021-05-17 00:00:00',
+          customerLevel: 0,
+          userId: '123'
         }, {
-          customerId: '123',
-          customerName: 'test',
-          shorterName: 'aa',
-          linkmanName: '??',
-          linkmanMobile: '??',
-          account: '??',
-          accumulatedDeposits: '??',
-          balance: '??',
-          creditAmount: '??',
-          availableQuota: '??'
+          customerId: '123456789',
+          partnerCommission: 0,
+          partnerId: '123456789',
+          identityId: '客户身份ID',
+          partnerType: 1,
+          customerName: 'TEST',
+          shorterName: 'test',
+          linkmanName: '张**',
+          linkmanMobile: '1518512885',
+          linkmanEmail: 'xxx@xxx',
+          address: '四川 成都',
+          status: 1,
+          account: 'TEST',
+          passwd: 'xxxxx',
+          svrPasswd: 'xxxxx',
+          payPasswd: 'xxxxx',
+          logoGroupId: 'xxxxx',
+          logoUrl: 'xxx',
+          twoCode: 'xxx',
+          twoCodeUrl: 'xxx',
+          settlePrice: '10.11',
+          balance: '',
+          creditAmount: '10000',
+          currentAmount: '154842',
+          isFirstLogin: '1',
+          isDeleted: 1,
+          creator: 'Admin',
+          createTime: '2021-05-17 00:00:00',
+          updator: 'Admin',
+          updateTime: '2021-05-17 00:00:00',
+          customerLevel: 0,
+          userId: '123'
         }, {
-          customerId: '123',
-          customerName: 'test',
-          shorterName: 'aa',
-          linkmanName: '??',
-          linkmanMobile: '??',
-          account: '??',
-          accumulatedDeposits: '??',
-          balance: '??',
-          creditAmount: '??',
-          availableQuota: '??'
+          customerId: '123456789',
+          partnerCommission: 0,
+          partnerId: '123456789',
+          identityId: '客户身份ID',
+          partnerType: 1,
+          customerName: 'TEST',
+          shorterName: 'test',
+          linkmanName: '张**',
+          linkmanMobile: '1518512885',
+          linkmanEmail: 'xxx@xxx',
+          address: '四川 成都',
+          status: 1,
+          account: 'TEST',
+          passwd: 'xxxxx',
+          svrPasswd: 'xxxxx',
+          payPasswd: 'xxxxx',
+          logoGroupId: 'xxxxx',
+          logoUrl: 'xxx',
+          twoCode: 'xxx',
+          twoCodeUrl: 'xxx',
+          settlePrice: '10.11',
+          balance: '',
+          creditAmount: '10000',
+          currentAmount: '154842',
+          isFirstLogin: '1',
+          isDeleted: 1,
+          creator: 'Admin',
+          createTime: '2021-05-17 00:00:00',
+          updator: 'Admin',
+          updateTime: '2021-05-17 00:00:00',
+          customerLevel: 0,
+          userId: '123'
         }, {
-          customerId: '123',
-          customerName: 'test',
-          shorterName: 'aa',
-          linkmanName: '??',
-          linkmanMobile: '??',
-          account: '??',
-          accumulatedDeposits: '??',
-          balance: '??',
-          creditAmount: '??',
-          availableQuota: '??'
+          customerId: '123456789',
+          partnerCommission: 0,
+          partnerId: '123456789',
+          identityId: '客户身份ID',
+          partnerType: 1,
+          customerName: 'TEST',
+          shorterName: 'test',
+          linkmanName: '张**',
+          linkmanMobile: '1518512885',
+          linkmanEmail: 'xxx@xxx',
+          address: '四川 成都',
+          status: 1,
+          account: 'TEST',
+          passwd: 'xxxxx',
+          svrPasswd: 'xxxxx',
+          payPasswd: 'xxxxx',
+          logoGroupId: 'xxxxx',
+          logoUrl: 'xxx',
+          twoCode: 'xxx',
+          twoCodeUrl: 'xxx',
+          settlePrice: '10.11',
+          balance: '',
+          creditAmount: '10000',
+          currentAmount: '154842',
+          isFirstLogin: '1',
+          isDeleted: 1,
+          creator: 'Admin',
+          createTime: '2021-05-17 00:00:00',
+          updator: 'Admin',
+          updateTime: '2021-05-17 00:00:00',
+          customerLevel: 0,
+          userId: '123'
         }
       ]
     }