|
@@ -137,7 +137,7 @@
|
|
type="text"
|
|
type="text"
|
|
icon="el-icon-s-promotion"
|
|
icon="el-icon-s-promotion"
|
|
@click="association(scope.row)"
|
|
@click="association(scope.row)"
|
|
- v-hasPermi="['invoice:bookingworkticket:edit']"
|
|
|
|
|
|
+ v-hasPermi="['invoice:bookingworkticket:edit','invoice:bookingworkticket:query']"
|
|
></el-button>
|
|
></el-button>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
@@ -394,7 +394,7 @@
|
|
</div>
|
|
</div>
|
|
<div slot="footer" class="dialog-footer">
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button @click="guanlianVisible=false">取 消</el-button>
|
|
<el-button @click="guanlianVisible=false">取 消</el-button>
|
|
- <el-button type="primary" @click="submitassociation">确 定</el-button>
|
|
|
|
|
|
+ <el-button type="primary" v-hasPermi="['invoice:bookingworkticket:edit']" @click="submitassociation">确 定</el-button>
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
<add-approve v-if="addAprroveVisible" ref="addApprove" @refreshDataList="getList"></add-approve>
|
|
<add-approve v-if="addAprroveVisible" ref="addApprove" @refreshDataList="getList"></add-approve>
|
|
@@ -754,8 +754,6 @@ export default {
|
|
//得到用户名-承包商名称
|
|
//得到用户名-承包商名称
|
|
listBookingworkticket(this.queryParams).then(response => {
|
|
listBookingworkticket(this.queryParams).then(response => {
|
|
this.bookingworkticketList=response.rows;
|
|
this.bookingworkticketList=response.rows;
|
|
-
|
|
|
|
-
|
|
|
|
this.total = response.total;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
this.loading = false;
|
|
});
|
|
});
|
|
@@ -1032,15 +1030,14 @@ export default {
|
|
putData.id=this.associationParams.id
|
|
putData.id=this.associationParams.id
|
|
putData.reservationNumber=this.reservationNumber
|
|
putData.reservationNumber=this.reservationNumber
|
|
updateWorkcontent(putData).then(response => {
|
|
updateWorkcontent(putData).then(response => {
|
|
- console.log(response.data)
|
|
|
|
- this.$set(this.tableData, index, row);
|
|
|
|
|
|
+ // console.log(response.row)
|
|
|
|
+
|
|
});
|
|
});
|
|
assion(this.associationParams.bookingticketId).then(response => {
|
|
assion(this.associationParams.bookingticketId).then(response => {
|
|
- console.log(response.data)
|
|
|
|
|
|
+ this.getList()
|
|
});
|
|
});
|
|
- this.msgSuccess("请求成功");
|
|
|
|
- this.getList()
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ this.msgSuccess("请求成功");
|
|
},
|
|
},
|
|
/** 下载模板操作 */
|
|
/** 下载模板操作 */
|
|
importTemplate() {
|
|
importTemplate() {
|