Commit 349fff41 by 米嘉伟

Merge branch 'dev_zwpt' of http://39.99.224.27:9022/changchao/founder_vue into dev_zwpt

parents c4041838 b7fc6a73
<!--
* @Author: your name
* @Date: 2021-11-15 14:15:58
* @LastEditTime: 2022-01-04 11:17:09
* @LastEditTime: 2022-01-18 10:53:20
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\components\confrim.vue
......@@ -121,6 +121,7 @@ export default {
let newVal = val;
if (!newVal) newVal = "";
this.$set(this.form, this.id, newVal);
this.$emit("change", val);
//选择完以后关闭下拉版
this.$refs.cascader.dropDownVisible = false;
},
......
<!--
* @Author: your name
* @Date: 2021-11-25 10:15:01
* @LastEditTime: 2022-01-04 11:14:17
* @LastEditTime: 2022-01-18 10:47:44
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\components\SelectCode.vue
......@@ -83,16 +83,18 @@ export default {
//多选时最多可以选择几个
multipleLimit: Number,
},
computed: {
newVal() {
return this.newForm[this.id];
},
},
watch: {
// form: {
// handler(newForm) {
// setTimeout(() => {
// this.newForm = newForm;
// }, 20);
// },
// deep: true,
// immediate: true,
// },
newVal: {
deep: true,
handler(val) {
this.$emit("change", val);
},
},
},
methods: {
pinyingMatch(val) {
......
/*
* @Author: your name
* @Date: 2021-09-07 09:57:48
* @LastEditTime: 2022-01-17 14:20:35
* @LastEditTime: 2022-01-18 10:29:29
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \指纹系统\founder_vue\vue.config.js
......@@ -118,8 +118,8 @@ module.exports = {
// target: "http://127.0.0.1:8099",
// target: "http://47.92.225.109:5602",
// target: "http://www.meetfood.cn:2390", // 湖南-线上
// target: "http://zwpt.xzclub.top:9333/",
target: "http://192.168.128.106:8099", // 江
target: "http://zwpt.xzclub.top:9333/",
// target: "http://192.168.128.106:8099", // 江
ws: true,
changeOrigin: true,
pathRewrite: {
......
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