230320a303 1 tahun lalu
induk
melakukan
9a47db1820

File diff ditekan karena terlalu besar
+ 0 - 0
dist/index.html


File diff ditekan karena terlalu besar
+ 0 - 0
dist/static/css/chunk-c4e2899a.e0218603.css


File diff ditekan karena terlalu besar
+ 0 - 0
dist/static/css/chunk-d6a879e8.167621c9.css


File diff ditekan karena terlalu besar
+ 0 - 0
dist/static/js/app.839bccbb.js


File diff ditekan karena terlalu besar
+ 0 - 0
dist/static/js/chunk-c4e2899a.dbb8fc0b.js


File diff ditekan karena terlalu besar
+ 0 - 0
dist/static/js/chunk-d6a879e8.4eda0269.js


+ 0 - 95
src/views/cust/components/popup/IndexEdit.vue

@@ -1,95 +0,0 @@
-<template>
-  <div>
-    <el-dialog
-      v-loading="loading"
-      :show-close="false"
-      :close-on-click-modal="false"
-      :visible.sync="isShow"
-      :title="curObj.id ? '编辑客户' : '新增客户'"
-      :fullscreen="false"
-      width="700px"
-      custom-class="xl-dialog"
-      center
-    >
-      <base-form ref="ruleForm" class="lib-edit" :data="formData" :is-inline="false" label-width="110px">
-        <div slot="footer" style="padding-top: 20px;">
-          <el-button class="xl-form-btn t2" @click="close">关 闭</el-button>
-          <el-button class="xl-form-btn t1" @click="close('confirm')">确定</el-button>
-        </div>
-      </base-form>
-    </el-dialog>
-  </div>
-</template>
-<script>
-export default {
-  components: { },
-  mixins,
-  props: {
-    isShow: Boolean,
-    curObj: Object
-  },
-  inject: ['parentData'],
-  data() {
-    return {
-      formData: [],
-      loading: true,
-      cObj: {},
-      curEstateList: [],
-    }
-  },
-  watch: {
-    isShow: function(val) {
-      if (val) {
-        this.getDef()
-      }
-    },
-  },
-  methods: {
-    getDef() {
-      let params = {...this.curObj}
-      this.formData = [
-        { label: '姓名', key: 'name', class: 'c-2', rules: 1 },
-        { label: '电话', key: 'phone', class: 'c-2', rules: 1 },
-        { label: '性别', key: 'sex', rules: 1, type: 'select', options: this.$dictData.sex },
-        { label: '备注', label2: '备注', key: 'demand', type: 'textarea' },
-      ]
-      this.setDefaultValue(params)
-    },
-    close(str) {
-      if (str === 'confirm') {
-        this.$refs['ruleForm'].$refs['baseForm'].validate((valid) => {
-          if (valid) {
-            const oldform = this.$refs.ruleForm.baseForm
-            const newForm = { ...oldform }
-            if (this.curObj.id) {
-              newForm.id = this.curObj.id
-            }
-            let apiStr = 'admcustomeradd'
-            if (newForm.id) apiStr = 'admcustomeredit'
-            newForm.phone_type = 1
-            this.$api.cust[apiStr](newForm).then(data => {
-              this.$msgs(newForm.id ? '编辑成功' : '新增成功')
-              this.$emit('close', newForm)
-            })
-          }
-        })
-      } else {
-        this.$emit('close')
-        this.setDefaultValue()
-      }
-    }
-  }
-}
-</script>
-<style lang="scss" scoped>
-@import '../../../../styles/libEdit.scss';
-.lib-edit {
-  padding-top: 0;
-  ::v-deep .el-form-item {
-    margin-bottom: 10px;
-  }
-  ::v-deep .el-date-editor.el-input {
-    width: 100%;
-  }
-}
-</style>

+ 1 - 0
src/views/jiangtou/components/searchForm/Prizeulist.vue

@@ -29,6 +29,7 @@ export default {
       let params = { ...this.$refs.ruleForm.baseForm }
       this.searchData = [
         { label: '用户id', key: 'user_id' },
+        { label: '手机号', key: 'phone' },
       ]
       this.setDefaultValue(params, 'searchData')
     },

+ 1 - 0
src/views/jiangtou/components/searchForm/Userlist.vue

@@ -29,6 +29,7 @@ export default {
       let params = { ...this.$refs.ruleForm.baseForm }
       this.searchData = [
         { label: 'id', key: 'id' },
+        { label: '手机号', key: 'phone' },
         { label: '已中奖', key: 'is_lottery', type: 'select', options: this.$dictData.sys_yesno},
       ]
       this.setDefaultValue(params, 'searchData')

+ 1 - 0
src/views/jiangtou/prizeulist.vue

@@ -52,6 +52,7 @@ export default {
     this.listConfig = {
       rows: [
         { label: '用户id', prop: 'user_id' },
+        { label: '手机号', prop: 'phone' },
         { label: 'openid', prop: 'openid' },
         { label: '奖品', prop: 'prize' },
         { label: '创建时间', prop: 'create_at' },

+ 1 - 0
src/views/jiangtou/userlist.vue

@@ -59,6 +59,7 @@ export default {
     this.listConfig = {
       rows: [
         { label: '用户ID', prop: 'id' },
+        { label: '手机号', prop: 'phone' },
         { label: 'openid', prop: 'openid' },
         { label: '可抽卡数', prop: 'lucky1_num' },
         { label: '集满套数', prop: 'lucky2_num' },

Beberapa file tidak ditampilkan karena terlalu banyak file yang berubah dalam diff ini