|
@@ -96,6 +96,8 @@
|
|
|
<el-option v-for="(item, index) in billingList" :key="index" :label="item.cname" :value="item.cname">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
+ <crop-select v-model="form.invoiceTitle" :cropIndex="index"
|
|
|
+ @getCorpData="getCorpData" corpType="KG"></crop-select>
|
|
|
</template>
|
|
|
</avue-form>
|
|
|
</basic-container>
|
|
@@ -467,7 +469,7 @@ export default {
|
|
|
this.buttonLoading = false
|
|
|
})
|
|
|
}
|
|
|
- getlistAll().then(res => {
|
|
|
+ getlistAll({corpType:'KH,GYS'}).then(res => {
|
|
|
this.billingList = res.data.data
|
|
|
})
|
|
|
},
|
|
@@ -475,6 +477,9 @@ export default {
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
|
+ getCorpData(row){
|
|
|
+ console.log(row)
|
|
|
+ },
|
|
|
invoiceChange(row) {
|
|
|
if (row) {
|
|
|
this.billingList.forEach(e => {
|