收费方式
This commit is contained in:
parent
c3904cf7d0
commit
550ebddfff
|
@ -53,6 +53,7 @@
|
||||||
"nprogress": "0.2.0",
|
"nprogress": "0.2.0",
|
||||||
"qrcode": "^1.5.3",
|
"qrcode": "^1.5.3",
|
||||||
"quill": "1.3.7",
|
"quill": "1.3.7",
|
||||||
|
"react-native-vector-icons": "^10.1.0",
|
||||||
"screenfull": "5.0.2",
|
"screenfull": "5.0.2",
|
||||||
"sortablejs": "1.10.2",
|
"sortablejs": "1.10.2",
|
||||||
"vue": "2.6.12",
|
"vue": "2.6.12",
|
||||||
|
@ -64,6 +65,7 @@
|
||||||
"vuex": "3.6.0"
|
"vuex": "3.6.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@types/react-native-vector-icons": "^6.4.18",
|
||||||
"@vue/cli-plugin-babel": "4.4.6",
|
"@vue/cli-plugin-babel": "4.4.6",
|
||||||
"@vue/cli-plugin-eslint": "4.4.6",
|
"@vue/cli-plugin-eslint": "4.4.6",
|
||||||
"@vue/cli-service": "4.4.6",
|
"@vue/cli-service": "4.4.6",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="运营商" prop="deptId" v-if="userName == 'admin'" data-tip="这是运营商选择框">
|
<el-form-item label="运营商" prop="deptId" v-if="userName == 'admin'" data-tip="这是运营商选择框">
|
||||||
<treeselect v-model="form.deptId" :options="deptOptions" :show-count="true"
|
<treeselect v-model="form.deptId" :options="deptOptions" :show-count="true"
|
||||||
placeholder="请选择运营商" />
|
placeholder="请选择运营商" @change="changedept" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -366,6 +366,9 @@ export default {
|
||||||
console.log(this.dictList, 'dictdict');
|
console.log(this.dictList, 'dictdict');
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
changedept(){
|
||||||
|
clog
|
||||||
|
},
|
||||||
reset() {
|
reset() {
|
||||||
this.form = {
|
this.form = {
|
||||||
areaTime:'1',
|
areaTime:'1',
|
||||||
|
@ -542,7 +545,12 @@ export default {
|
||||||
|
|
||||||
this.title = "修改运营区";
|
this.title = "修改运营区";
|
||||||
this.key++;
|
this.key++;
|
||||||
|
// listFee({ areaId: this.form.areaId }).then(response => {
|
||||||
|
// this.ruleOptions = response.rows;
|
||||||
|
// this.open = true;
|
||||||
|
// this.title = "修改运营区";
|
||||||
|
// this.key++;
|
||||||
|
// });
|
||||||
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -584,11 +592,15 @@ export default {
|
||||||
}) /* 市匹配成功*/
|
}) /* 市匹配成功*/
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getCityList() {
|
getFeeList(){
|
||||||
listFee({ areaId: this.form.areaId }).then(response => {
|
listFee({ deptId: this.form.deptId }).then(response => {
|
||||||
this.ruleOptions = response.rows;
|
this.ruleOptions = response.rows;
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
},
|
||||||
|
getCityList() {
|
||||||
|
|
||||||
getDistrictList().then(res => {
|
getDistrictList().then(res => {
|
||||||
this.form.provinceList = JSON.parse(res.data)
|
this.form.provinceList = JSON.parse(res.data)
|
||||||
// console.log("provinceList======"+JSON.stringify(this.form.provinceList))
|
// console.log("provinceList======"+JSON.stringify(this.form.provinceList))
|
||||||
|
|
|
@ -28,8 +28,8 @@
|
||||||
</router-link>
|
</router-link>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="1.5">
|
<el-col :span="1.5">
|
||||||
<!-- <el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
|
<el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
|
||||||
v-hasPermi="['system:area:edit']">修改</el-button> -->
|
v-hasPermi="['system:area:edit']">修改</el-button>
|
||||||
<!-- <el-button
|
<!-- <el-button
|
||||||
type="success"
|
type="success"
|
||||||
plain
|
plain
|
||||||
|
|
Loading…
Reference in New Issue
Block a user