master
yujialong 4 years ago
parent 1c3fafebaf
commit 2feb9dd602
  1. 30
      README.md
  2. 1
      src/utils/api.js
  3. 43
      src/views/Home.vue
  4. 5
      src/views/List.vue
  5. 3
      src/views/ProgramOptions.vue

@ -1,30 +0,0 @@
# python_admin
## Project setup
```
npm install
```
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
- Home:判分点列表
- Main:判分点设置
+ Program:编程类
+ Transaction:交易类
+ Tool:工具类
+ Flow:流程类
- Catalog:目录树
+ Loan:贷款申请表
+ Process:业务编写页面
+ Set:业务已设置

@ -25,6 +25,7 @@ export default {
DeletePointOfJudgementRule: `${host}/judgment/pointOfJudgement/deletePointOfJudgementRule`, //删除判分点规则 DeletePointOfJudgementRule: `${host}/judgment/pointOfJudgement/deletePointOfJudgementRule`, //删除判分点规则
UpdateIsOpen: `${host}/judgment/pointOfJudgement/updateIsOpen`, //修改判分点状态 UpdateIsOpen: `${host}/judgment/pointOfJudgement/updateIsOpen`, //修改判分点状态
JudgmentPointNameRepetition: `${host}/judgment/pointOfJudgement/JudgmentPointNameRepetition`, JudgmentPointNameRepetition: `${host}/judgment/pointOfJudgement/JudgmentPointNameRepetition`,
queryUserIds:`${host}/liuwanr/userInfo/queryUserIds`,
// 科大 // 科大
queryPoint: `${host2}/kdSys/queryPoint`, queryPoint: `${host2}/kdSys/queryPoint`,

@ -123,27 +123,28 @@ export default {
}, },
handleCurrentChange(val) { handleCurrentChange(val) {
this.pageNo = val; this.$get(this.api.queryUserIds).then(res => {
this.systemId = this.getCookie("systemId"); this.pageNo = val;
this.systemId = this.systemId ? this.systemId : 1 this.systemId = this.getCookie("systemId");
this.systemName = this.getCookie("systemName"); this.systemId = this.systemId ? this.systemId : 1
this.userId = this.getCookie("userId"); this.systemName = this.getCookie("systemName");
this.$get(this.api.QueryPointOfJudgement, { this.userId = this.getCookie("userId");
systemId: this.systemId, this.$get(this.api.QueryPointOfJudgement, {
userId: this.userId, systemId: this.systemId,
// systemId: 1, userId: this.userId,
pageNum: this.pageNo, // systemId: 1,
pageSize: this.pageSize, pageNum: this.pageNo,
queryName: this.keyword pageSize: this.pageSize,
}) queryName: this.keyword,
userIdList: res.message.retvalue.join()
.then(res => { }).then(res => {
this.tableData = res.message.list; this.tableData = res.message.rows;
this.dataTotal = res.message.total; this.dataTotal = res.message.total;
}) })
.catch(err => { .catch(err => {
console.log(err); console.log(err);
}); });
}).catch(res => {})
}, },
initData(){ initData(){
this.pageNo = 1 this.pageNo = 1

@ -81,6 +81,7 @@ export default {
currentPage: 1, currentPage: 1,
systemId: this.$route.query.systemId ? this.$route.query.systemId : 1, systemId: this.$route.query.systemId ? this.$route.query.systemId : 1,
userId: this.$route.query.userId, userId: this.$route.query.userId,
pattern: this.$route.query.pattern,
systemName: "", systemName: "",
searchTimer: null searchTimer: null
}; };
@ -154,7 +155,7 @@ export default {
if(this.systemId == 2){ if(this.systemId == 2){
this.$router.push(`programOption?systemId=${this.systemId}&userId=${this.userId}`); this.$router.push(`programOption?systemId=${this.systemId}&userId=${this.userId}`);
}else{ }else{
this.$router.push(`programOptions?systemId=${this.systemId}&userId=${this.userId}`); this.$router.push(`programOptions?systemId=${this.systemId}&userId=${this.userId}&pattern=${this.pattern}`);
} }
}, },
// //
@ -218,7 +219,7 @@ export default {
if(this.systemId == 2){ if(this.systemId == 2){
this.$router.push(`programOption?systemId=${this.systemId}&userId=${this.userId}&id=${res.id}`); this.$router.push(`programOption?systemId=${this.systemId}&userId=${this.userId}&id=${res.id}`);
}else{ }else{
this.$router.push(`programOptions?systemId=${this.systemId}&userId=${this.userId}&id=${res.id}`); this.$router.push(`programOptions?systemId=${this.systemId}&userId=${this.userId}&id=${res.id}&pattern=${this.pattern}`);
} }
} }
} }

@ -401,6 +401,7 @@ export default {
}, },
], ],
operatorTwo: 1, operatorTwo: 1,
pattern: this.$route.query.pattern
}; };
}, },
components: {quill}, components: {quill},
@ -492,7 +493,7 @@ export default {
} }
}, },
getData() { getData() {
this.$post(this.api.queryPoint) this.$post(`${this.api.queryPoint}?challenge=${this.pattern}`)
.then((res) => { .then((res) => {
this.stepList = res.subject this.stepList = res.subject
this.getMesg() this.getMesg()

Loading…
Cancel
Save