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