Przeglądaj źródła

Merge branch 'activity' of http://git.tjyourong.com.cn/ctop/adsp-vue into activity

魏志佳 4 lat temu
rodzic
commit
2b109ce7b0

+ 2 - 1
src/views/system/QuartzJobList.vue

@@ -207,12 +207,13 @@
       handleTableChange(pagination, filters, sorter) {
         //分页、排序、筛选变化时触发
         //TODO 筛选
+        console.log(pagination, filters, sorter)
         if (Object.keys(sorter).length > 0) {
           this.isorter.column = sorter.field;
           this.isorter.order = "ascend" == sorter.order ? "asc" : "desc"
         }
         //这种筛选方式只支持单选
-        this.filters.status = filters.status[0];
+        // this.filters.status = filters.status[0];
         this.ipagination = pagination;
         this.loadData();
       },

+ 2 - 1
src/views/system/modules/UserModal.vue

@@ -41,7 +41,7 @@
         </a-form-item>
 
         <a-form-item label="工号" :labelCol="labelCol" :wrapperCol="wrapperCol">
-          <a-input placeholder="请输入工号" v-decorator.trim="[ 'workNo', validatorRules.workNo]" />
+          <a-input placeholder="请输入工号" v-decorator.trim="[ 'workNo']" />
         </a-form-item>
 
         <a-form-item label="职务" :labelCol="labelCol" :wrapperCol="wrapperCol">
@@ -211,6 +211,7 @@
           phone:{rules: [{validator: this.validatePhone}]},
           email:{
             rules: [{
+              required: true,
               validator: this.validateEmail
             }],
           },

+ 2 - 1
vue.config.js

@@ -58,7 +58,7 @@ module.exports = {
       '/jeecg-boot': {
         // target: 'http://192.168.1.90:8080', //请求本地 需要jeecg-boot后台项目  蒙蒙
         // target: 'http://192.168.0.59:8088', //请求本地 需要jeecg-boot后台项目  英豪
-        target: 'http://192.168.1.72:8088', //请求本地 需要jeecg-boot后台项目  英豪
+        // target: 'http://192.168.1.72:8088', //请求本地 需要jeecg-boot后台项目  英豪
         // target: 'http://192.168.2.115:8080', //请求本地 需要jeecg-boot后台项目  祚云
         // target: 'http://192.168.1.94:8088', //请求本地 需要jeecg-boot后台项目  孙震
         // target: 'http://192.168.0.230:8088', //请求本地 需要jeecg-boot后台项目  孙震
@@ -69,6 +69,7 @@ module.exports = {
         // target: 'http://39.106.184.70:8088/', //请求本地 需要jeecg-boot后台项目 
         // target: 'http://adsp.tjyourong.com.cn/', //请求本地 需要jeecg-boot后台项目 
         // target: 'http://192.168.1.251/', //请求本地 需要jeecg-boot后台项目 
+        target:'http://118.24.244.213:8804',
 
         ws: false,
         changeOrigin: true,